============
:
ex1.cpp:1:21: error: iostream.h: No such file or directory
ex1.cpp: In function int main():
ex1.cpp:5: error: cout was not declared in this scope
ex1.cpp:6: error: cin was not declared in this scope
====================================
#include<iostream.h>
int main()
{
int x;
cout <<"Enter x:" ;
cin >> x ;
cout << "x is : " << x;
return 0;
}
===========





std::


()