Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 11 (Q.No. 6)
6.
The expression c = i++ causes
the value of i assigned to c and then i incremented by 1
i to be incremented by 1 and then the value of i assigned to c
value of i assigned to c
i to be incremented by 1
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Onkar Yadav said:   6 years ago
++ operator having more precedance than = operater..

[B] is correct answer.

i to be incremented by 1 and then the value of i assigned to c.

Post your comments here:

Your comments will be displayed after verification.