#include <stdio.h>
int
main(void)
{
printf("hello, world\n");
return 0;
}
#include <stdio.h>
int main(void)
int
main
main() function
main() function ALWAYS returns an integer
{ ... }
printf("hello, world\n")
printf
"hello, world\n"
\n is a special character escape sequence
\ means treat the next character in a special way
\n together is interpreted to mean restart output on the next line down
; is the end-of-statement indicator
return 0;
return sets the return value for a function and exits the function