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