0
What is the output of this Code?
char a, b; int _1=97, _2=115; string name = ""; a = char (_1); b = char (_2); (name = a) += b; cout << name <<endl; #corrected its was try question. Tnx guys
1 Answer
+ 3
Use Code Playground ~_~
char a, b; int _1=97, _2=115; string name = ""; a = char (_1); b = char (_2); (name = a) += b; cout << name <<endl; #corrected its was try question. Tnx guys