Mega Code Archive

 
Categories / C Tutorial / Language
 

Main() function in C

In all C programs, the starting point is the main() function. Every C program has one. #include <stdio.h>    int main() {     printf("Goodbye!\n");     return(0); } Goodbye!