0
Write three different C++ statement to substract 1 from the integer variable n.
Write three different C++ statement to substract 1 from the integer variable n.
2 Réponses
+ 9
n--
--n
n-=1
+ 9
n = n - 1;
n--;
--n;
n -= 1;
Write three different C++ statement to substract 1 from the integer variable n.