fork download
  1. #include<iostream.h>
  2. #include<conio.h>
  3. int main()
  4. {
  5. char c;
  6. clrscr();
  7. court<<"enter text ";
  8. while(cin.get(c))
  9. {
  10. if(c==` `)
  11. Cin.putback('.') ;
  12. Else
  13. Cout<<c;
  14. while(cin.peek()=='#')
  15. cin.ignore(1,'#');
  16. }
  17. return(0);
  18. }
  19.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:9: fatal error: 'iostream.h' file not found
#include<iostream.h>
        ^
1 error generated.
stdout
Standard output is empty