I just downloaded devc++ 4.9.7.0 for windows xp. I am trying to do the "Hello World" program. here is what I've typed along with a couple of the error msgs that appears. Thanks for you help.
# include <iostream>
# include <stdlib.h>
int main () {
std::cout <<"hello world" <<std::endl;
system ("pause");
return 0;
}
error msgs:
1. iostream: No such file or directory.
2. [Warning] In function 'int;
3. 'cout' undeclared in
4. 'endl' undeclared in
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I just downloaded devc++ 4.9.7.0 for windows xp. I am trying to do the "Hello World" program. here is what I've typed along with a couple of the error msgs that appears. Thanks for you help.
# include <iostream>
# include <stdlib.h>
int main () {
std::cout <<"hello world" <<std::endl;
system ("pause");
return 0;
}
error msgs:
1. iostream: No such file or directory.
2. [Warning] In function 'int;
3. 'cout' undeclared in
4. 'endl' undeclared in