Everything you need to know to start with C
while(98) printf(“#cisfun\n”);
C is an imperative (procedural) language. All the code has to be inside a function. C files are source code of your program. You have to compile C files with a compiler (for instance gcc) to create an executable file
Begins with /* and ends with */
/* comment */
Can be inserted anywhere a white-space character is allowed
/*
Multi
Line
comment
*/
/*
*Multi
*Line
*Comment
*/
Comments don’t nest
/* does not /* work */ */
Use comments to document your code