DJGPP sucks ?
Posted: Sun May 18, 2003 6:49 am
Anyone helps me with this :
#include <iostream>
int main()
{
cout<<"DJGPP sucks ?";
return 0;
}
I couldn't compile this successfully and didn't know why DJGPP doesn't know "cout" ? ("cout undeclared")
how come ?
#include <iostream>
int main()
{
cout<<"DJGPP sucks ?";
return 0;
}
I couldn't compile this successfully and didn't know why DJGPP doesn't know "cout" ? ("cout undeclared")
how come ?