hey
i downloaded the eclipse c++ compiler and tried creating a program.
like the usual first step, i included header files :
#include<iostream.h>
#include<conio.h>
but it seems that the compiler does not recognize these header files, then i tried with this
#include<iostream>
#include<conio>
using namespace std;
it's still not compiling the program.
what shuld i do now ?
i downloaded the eclipse c++ compiler and tried creating a program.
like the usual first step, i included header files :
#include<iostream.h>
#include<conio.h>
but it seems that the compiler does not recognize these header files, then i tried with this
#include<iostream>
#include<conio>
using namespace std;
it's still not compiling the program.
what shuld i do now ?