0

C code

How do I increase the value of variable Num by 15 and store the result in variable"Ans" in C? I tried this Ans = (I<16), I++

29th Dec 2017, 2:20 AM
Stefan
Stefan - avatar
2 Answers
+ 9
Num += 15; Ans = Num;
29th Dec 2017, 2:23 AM
Hatsy Rei
Hatsy Rei - avatar
0
thanks
29th Dec 2017, 2:28 AM
Stefan
Stefan - avatar