hi all,
need learn program in c. i'm totally new language.
installed anjuta , made small program took on-line tutorial
#include <iostream.h>
int main()
{
cout << "hello world!" << endl;
return 0;
}
try compile it, give me error says iostream not exist.
how solve problem ??
best regards,
andrea
that's c++ code , hello world program written in c should this:
code:#include <stdio.h> int main() { printf ("hello world!\n"); return 0; }
Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk New to C programming
Ubuntu
Comments
Post a Comment