Quick actions

cmd+k|ctrl+k

Navigation

Languages

C++Primer_strings

Snippet info

Language

Cpp

Visibility

public

Author

umashankar

Created

2021-04-21T12:10:50.582058Z

Updated

2021-04-21T12:10:50.582058Z

#include <iostream>
#include <string>
using namespace std;

int main() {
    
    string s1 = "Hello";
    string s2 = "pinky";
    string s3 = s1 + " " + "\n" + s2 +"\n";
    cout << "s3 - " <<s3;
    cout << "S1 - " << s1
    
    return 0;
}
INFO