Quote Originally Posted by Paul McKenzie View Post
Code:
int main()
{
   // fill this in 
}
So what do you want us to do? I'll give you a test:

Write a C++ "Hello World" program.

If you can't do this properly, then it's futile asking for help with this problem you're having. From what you've written, you shouldn't be able to write a proper "Hello World" C++ program, since there are so many basic beginner errors in the code you posted.

I suggest you read your book from chapter 1 until you understand everything in chapter 1.

Regards,

Paul McKenzie
Here:

#include <stdio.h>
#include <stdlib.h>

main(){
printf("Hello World! \n");
}