My issue
My code
#include <bits/stdc++.h>
using namespace std;
int main()
{
string a,b temp;
cout<<"enter underscore:";
cin>>a;
cout<<"enter string:";
cin>>b;
cout<<"before swap number:"<<"a."<<a<<" b"<<b;
temp=a;
a=b;
temp=b;
cout<<"after swap number:"<<"a."<<a<<" b"<<b;
return 0;
}
Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone
how to do that program?