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