0
What is int main ( ); code in C language?? Why use it??
I need to know the code. Why use it??
3 Réponses
+ 2
int main(){} is the entry point of programme .
All c programme must contain a main() method
+ 1
main() is the function from where your system starts execution of the program.