Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 221 Bytes

how_to_c.md

File metadata and controls

15 lines (11 loc) · 221 Bytes

How to C

So compiling a program in c is:

clang program.c -o program

which takes the file named program.c and compiles it to program.

running the program:

./program

Which seems pretty simple.