Lorsque je compile un programme cpp tout simple, il me dit ne pas trouver iostream…
j’ai essayé de mettre #include <iostream.h>
ca ne marche pas non plus…
quelqu’un a une idée ???
[code]#include <iostream.h>
using namespace std;
int main(void)
{
cout<<“hello, word!”;
}
[/code]
vohu@vohuserver:~/c$ gcc cout.c
cout.c:1:22: error: iostream.h: Aucun fichier ou répertoire de ce type
cout.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'
cout.c: In function 'main':
cout.c:7: error: 'cout' undeclared (first use in this function)
cout.c:7: error: (Each undeclared identifier is reported only once
cout.c:7: error: for each function it appears in.)