Determine output:
void main() { int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k); }
A.1 1 2 3
B.1 1 2 2
C.0 1 2 2
D.0 1 2 3
Answers
Answered by
0
Answer:
void main() { int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d ... In an expression involving || operator, evaluation takes place from left to ...
Explanation:
Similar questions
Math,
7 months ago
Math,
7 months ago
Science,
7 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago
Social Sciences,
1 year ago
Psychology,
1 year ago