What will the following code display?
int number = 6;
int x = 0;
x = number--;
cout << x << endl;
a. 6
b. 5
c. 7
d. 0
a. 6
Computer Science & Information Technology
int number = 6;
int x = 0;
x = number--;
cout << x << endl;
a. 6
b. 5
c. 7
d. 0
a. 6