Dev-C++

Status
Not open for further replies.

ZhengHe

In Runtime
Messages
135
I recently installed the file Dev C++ after some recommendation. I've never tried to create a program on C++ before and I was wondering if there was anywhere I could get some help in starting out. You know, the basic commands and stuff. Thanks in advance.:)
 
i'm currently programming on C++ using DEV C++. and i would say it has many bugs. try typing this to start :

#include < iostream >
#include < stdlib.h >

int main ()
{
cout<<"hello world this is my first program"
<< endl;

system("PAUSE");
return 0;
}

for this prog you just need to go under file ->new ressource file.
you can also go for a project if you use different .h and .cpp files in the project. if need further info post here.
cheers.
 
Status
Not open for further replies.
Back
Top Bottom