Everytime I write even a basic C++ code and try to compile it, it gives me an error saying.. "No iostream directory found" and build is unsuccessful.
Kindly help me, what shall I do to fix this.!!
Below is the code.
#include<iostream.h>
#include<conio.h>
main()
{
char name[15];
cout<<"enter your name:";
cin>>name;
cout<<"your name is:"<<name;
return 0;
}