+ 1
Can sum of two numbers logic be done without using + operator??
please help me with this program to calculate the sum of 2 numbers without using + operator
4 odpowiedzi
+ 1
please help me with the coding for cpp and Java for the logic of sum of two numbers without using + operator
0
Sorry, got confused with the tag.
You'll need to use bitwise operators. ( ^ )
ex: 1 ^ 3
# output: 2
0
no