0
Simply if i say... Then int main() Works but intmain() does not... Why??
6 Antworten
0
main() is a function that the compiler calls immediately.
intmain() is not a function (unless you define it), so it wouldn't run.
+ 1
He asks what is the difference between cout<<"dsds"; and cout << "dsds"; There is no difference, its just easier to read and the code looks cleaner.
0
Please post code as your explanations is hard to understand.
0
he said it does not run, he is not talking about that yoan
0
It doesnt run when he ignores the space between int main()
0
if he is writing intmain(), its because he needs to declare a data type for it and also it has to be named main for the compiler to know its the programs entry.