|
-
February 15th, 2009, 07:53 PM
#11
Re: Someone help please?
 Originally Posted by Paul McKenzie
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");
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|