fork(1) download
  1. #include <iosteram.h>
  2. #include<string.h>
  3. using namespace std;
  4. int main(void)
  5. {
  6. string str1 ="I" ;
  7. string str2 ="travel";
  8. string str3 = str1+str2;
  9. cout<< str3;
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:22: fatal error: iosteram.h: No such file or directory
 #include <iosteram.h>
                      ^
compilation terminated.
stdout
Standard output is empty