Code:
int main()
{
cout << "Hello! The program starts in main()."
<< endl;
line();
message();
line();
cout << "At the end of main()." << endl;
return 0;
} anybody know what's int means on the main method? Does that represent anything? Why is it int? I'm pretty sure that's not return value right???

aish...
