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++
2 Antworten
+ 9
Num += 15;
Ans = Num;
0
thanks
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++