2008-07-09, 04:41 PM
maybe you should try to learn the most easiest program first. Here is the most simplest program that typed out "Hello World!"
#include <iostream.h>
main()
{
for(;
{
cout << "Hello World! ";
}
}
or if i remember correctly it'll also work if you just have
#include <iostream.h>
main()
{
cout << "Hello World! ";
}
Here is the link to that program.
http://www2.latech.edu/~acm/helloworld/c++.html
You would also need to go read the beginners book or maybe try C++ for dummies first. You can't just learn how to program without reading a book.
#include <iostream.h>
main()
{
for(;

{
cout << "Hello World! ";
}
}
or if i remember correctly it'll also work if you just have
#include <iostream.h>
main()
{
cout << "Hello World! ";
}
Here is the link to that program.
http://www2.latech.edu/~acm/helloworld/c++.html
You would also need to go read the beginners book or maybe try C++ for dummies first. You can't just learn how to program without reading a book.

