+ 1
what is the result of "23"+"45"? Is it 2345 or 68?
6 Respostas
+ 5
in C++ languages if u summing a "strings" the answer is equal to 2345 if not the compiler calculate the sum of integers 23+45=68
so result is "23"+"45"=2345
+ 4
This question will have different outputs I'm different languages so specify your language.
in PHP it should be 68
js it should be 2345 soo..
+ 3
If you are using c++ as it's specified in the quiestion, the only possible answer is 2345, because you are summing two strings, not integers.
0
same with python, it'll give you 2345
0
It will give you 2345 because python is weird GET HOPSCOTCH ITS SO FUNNNN
0
in Python it is considered as string and simply adds the two number (not algebric addition) .the answer will be 2345