Answers for "c++ increment by 1"

C++
-1

decrement c++

int x = 5;
x--;
cout << x << endl;
//outputs 4
Posted by: Guest on December-12-2020

Code answers related to "c++ increment by 1"

Browse Popular Code Answers by Language