fork download
  1. #include <iostream.h>
  2. void main()
  3. {
  4. int a=1,b=5,c;
  5. cin>>a>>b;
  6. c=a+b;
  7. cout<<c;
  8. getch();
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:22: fatal error: iostream.h: No such file or directory
 #include <iostream.h>
                      ^
compilation terminated.
stdout
Standard output is empty