0
What about when we say int main?
C++
2 Answers
+ 5
We say to the compiler about the program's skeleton as
int main()
{
}
It's the most basic things that a compiler needs to know about the program's entry point and validity.
0
Okay cool
C++