hey everybody,
I just started with C++, but i don't get lessons in it, i try to do a self study.
I made a small C++ thing, dunno if it's good or if it works, but i wander,
How do you compile it in windows and what do you do nextt??
You should get a compiler (eg MinGW).
If you get an IDE, you would have the code you type formatted to be more readable than in notepad.
Try reading http://www.cplusplus.com/forum/beginner/8983/
This is the difference between sourcecode in notepad:
#include <iostream>
int main()
{
cout << "hello world";
return 0;
}