Computer Science, asked by rinkitakurrawat, 1 month ago

.What is the output of below program?
int main(){
string a = 10;
string b = 20;
string c = a+b;
cout<<c;
return 0;
}
a) 10
b) Not Defined
c) 20
d) 1020​

Answers

Answered by smabdullah2602
1

Answer:

the output of this program is d)1020.

Similar questions