C Language
Random notes about the C language. Entry Point The main function is the entry point of the program. It is the first function that is called when the program starts. int main(void) { return 0; } Compilation and Linking The C compiler (cc) compiles each source code into object files. cc -c file1.c file2.c The -c option tells the compiler to compile only and not to link. The object files are then linked together to form an executable. ...