0
How can i make d calculation? I cant understand dis
1 Antwort
0
This u r having two numbers that is integers.
ex:
minbash = 5; // think it's a=5;
munch = 4; // think it's b=4;
TotalFriends = minbash + munch; // think it's c = a + b;
cout <<"we both having :" + TotalFriends ; // total + c (c is having a+b value)
output : 9