type identifier (type1, type2, ...);
type identifier (type param1, type param2, ...) { variable declarations; statements; return(); }
/* block comment */ #include <files> constant declarations function prototype declarations int main () { variable declarations statements; return(0); } function implementations
int a; a = 0;
int a = 5, b = 9;