Assume that an int variable x that has already been declared and initialized. Write an expression whose value is 1 more than x.
LANGUAGE: C++
CHALLENGE:
Assume that an int variable x that has already been declared and initialized.
Write an expression whose value is 1 more than x.
SOLUTION:
x+1
Posted in C++, Learn To Code