Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 299 Bytes

README.md

File metadata and controls

8 lines (5 loc) · 299 Bytes

C Programming language: A Modern Approach book notes.

How to run c programming via mac terminal

  1. Using gcc to compile the c programming to the execute file.(Linux/Mac = > .out Windows => .exe) > gcc [file_name].c -o [filename]

  2. Run execute file via terminal

    > ./[filename].out