Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 524 Bytes

File metadata and controls

11 lines (10 loc) · 524 Bytes

#C PROJECT HELLO WORLD ##SCRIPTING *Preprocessing- gcc -E a command to only preprocess *Compiling- gcc _S a command to only preprocess and compile *Assembler- gcc filename -O filename.c a command to compile to machine language *Name- gcc filename -O filename a command to preprocess,compile,assemble and link ##C-PROGRAMMING *Hello,puts- use of the puts function- puts(variable) *Hello,prints- use of printf function- printf("format",arg1...) *Command to print sizes of various data types regardless of machine used