Answers for "increment and decrement operators in c++"

C++
-1

decrement c++

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

Code answers related to "increment and decrement operators in c++"

Browse Popular Code Answers by Language