0
why main is source special or significance of main function
4 Respuestas
0
If I understand correctly, you are asking why the main function is important, and it is because every single c++ program starts from it.
0
any program most have main function and if it doesn't have it won't be start
0
main() or datatype main (), tells that the program starts from here i.e from main ()
0
@jay: main() is not a datatype. it is a function. the datatype of main function is int if it returns an int or void if it doesnt return anything