0

What will be the output if num2=+num1

17th Feb 2017, 4:27 PM
Ram Hari
Ram Hari - avatar
2 Antwoorden
+ 6
1. num2+=num1; is equal to num2= num2 + num1; 2. num2=++num1; is equal to num2=num1+1; Choose the question that fits one of the answers. And try to code all three statements. Coding never hurts.
17th Feb 2017, 4:48 PM
Tashi N
Tashi N - avatar
+ 1
use the code playground to find out ;)
17th Feb 2017, 4:31 PM
Mario L.
Mario L. - avatar