fork download
  1. #include<iostream.h>
  2. #include<conio.h>
  3. void main()
  4. {
  5. int a;
  6. cout<<"Enter the value of a";
  7. cin>>a;
  8. cout<<"The value of a is"<<a;
  9. getch();
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:21: fatal error: iostream.h: No such file or directory
 #include<iostream.h>
                     ^
compilation terminated.
stdout
Standard output is empty