I know, noob question, but I'm completely new to Lite-C, so I guess this can be expected, . But I can't seem to find anything in the LC manual that elaborates on it.

The only reason I ask is because I constantly see things like:

Code:

void main()
{
blablabla...
}



What's the difference between void main() and function main()?

Last edited by MrCode; 07/05/07 07:01.

Code:
void main()
{
    cout << "I am MrCode,";
    cout << "hear me roar!";
    system("PAUSE");
}