Discussion :: Object Oriented Programming Using C++
-
The expression c = i++ causes
A.
the value of i assigned to c and then i incremented by 1
|
B.
i to be incremented by 1 and then the value of i assigned to c
|
C.
value of i assigned to c
|
D.
i to be incremented by 1
|
E.
None of the above
|
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment