0
please why is there no ; function after int main () ??
3 Antworten
+ 2
you are welcome.
you can declare main function before definig it like this:
int main();
int main(){
std::cout << "hello";
}
but that seems needless and pointless.
+ 1
because the is {//main function body}
0
Ok thanks a lot