+ 1
what does int main() signifies??
7 Answers
+ 4
It is the main function of the program....whenever you compile a program at first the main function gets executed then the other functions..... usually main function have a void return type...but in your case it will return an integer value
+ 3
the main function
0
Simply the Entrance to your program and the end too
0
the program starts here and ends here
0
all answered are correct..
0
And it's basically used to get the return value of executed code.generally we return 0 in case of success and in other cases we can return any other integer value.
0
A function gives the output of integer type,
thats all, nothing