Hello I am a fellow student who wants to learn this programming language. Just fixed my program for coding in C++ so took some online tutorials and I started coding. I'm using Dev C++ program which i heard works very well but I don't know why it gives me such errors on so simple codes like the one presented below. If some 1 is generous enough to help me I will be glad.
My code:
Errors:
My code:
Code:
#include<iostream> using namespace std; int main() { cout << "Hello Everyone"; system("PAUSE"); return 0 }
Code:
1. C:\Documents and Settings\User\Desktop\Untitled2.cpp In function `int main()': 2. 9 C:\Documents and Settings\User\Desktop\Untitled2.cpp expected `;' before '}' token 3. C:\Documents and Settings\User\Desktop\Makefile.win [Build Error] [Untitled2.o] Error 1
Comment