fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. sting name = "";
  6. {
  7.  
  8. cout<<"Whats your name?"<<endl;
  9. cin<<name;
  10. cout<<"Hello, " name<<endl;
  11. return 0;
  12. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:5:2: error: expected initializer before 'sting'
  sting name = "";
  ^
prog.cpp:6:1: error: expected unqualified-id before '{' token
 {
 ^
stdout
Standard output is empty