Examlex

Solved

What Will the Following Code Display

question 15

Multiple Choice

What will the following code display?
int number = 6;
int x = 0;
x = number--;
cout << x << endl;


Definitions:

Related Questions