Hi all,
I just started to work C++ in Dev C++ compiler before that i used Turbo C++ compiler when i try to compile a simple program in Dev C++ compiler . I'm getting error .
Here's the program
#include <iostream>
#include <conio.h>
int main ()
{
cout << "Hello World";
getch();
return 0;
}
I'm getting following error .
implicit declaration of function `int getchar(...)'
Please tell me what the problem with that code .
Thanks in advance