Why main () function so special?
(Computer)
Answers
Answered by
1
Explanation:
The “main ()” function indicates the beginning of a C++ program is executed, the control goes directly to the main() function. The statements within this function are the main body of the C++ program.
Answered by
0
Answer:
A main is a predefined kéyword or function in C. It is the first function of every C program that is responsible for starting the execution and termination of the program. It is a special function that always starts executing códe from the 'main' having 'int' or 'void' as return data type.
Similar questions