fork download
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. string s = "AppleAirways";
  7. string str("AppleAirways");
  8.  
  9. cout<< "s =" << s << endl;
  10. cout<<"str = "<<str<<endl;
  11. return 0;
  12. }
  13.  
  14.  
  15.  
  16.  
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
s =AppleAirways
str = AppleAirways