InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of main( ) in C language? |
|
Answer» The main() function is the entry point in C PROGRAMMING LANGUAGE. This function is called by OS the moment a user runs a program. The purpose of this function is crucial because the EXECUTION of a C program starts from here. Without the main() function, you cannot execute a program. |
|