Answers for "c++ increment"

C++
-1

decrement c++

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

Browse Popular Code Answers by Language