Name: Anonymous 2008-08-26 18:59
What's the correct structure for coding? Where are you supposed to put the braces "{}" at? When and where are you supposed to indent or use blank spaces?
This:
int main(){
cout << "Hello World!";
return 0;}
or this:
int main()
{
cout << "Hello World!";
return 0;
}
Is there a tutorial or book for this?
This:
int main(){
cout << "Hello World!";
return 0;}
or this:
int main()
{
cout << "Hello World!";
return 0;
}
Is there a tutorial or book for this?