Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.49 KB

README.md

File metadata and controls

26 lines (23 loc) · 1.49 KB

C lang studynote during summer vacation ~ ☀️

🏷️메모리 writedown
🏷️메모리 구조
🏷️문자열 입력 함수
🏷️자료형
🏷️형 변환
🏷️연산자 우선순위
🏷️비트 연산

  • gcc <file>.c 컴파일을 할 때 왜 a.exe가 아닌 a.out이 만들어질까?
    • 관련 스택오버플로우 글
    • 윈도우에는 a.exe가 생기지만 다른 플랫폼에서는 지원을 안 하는 듯
      • 만약에 윈도우에서 .out을 만들어내고 싶다?
        • gcc <source> -o <dest>.out
    • 리눅스에서는 .out을 만들어냄
a.out file can be further linked to the definitions (or more technically libraries)
represent in the OS to form the executable image