InterviewSolution
Saved Bookmarks
| 1. |
Which of the following method is accepted for assignment?(a) 5 = a = b = c = d;(b) a = b = c = d = 5;(c) a = b = 5 = c = d;(d) None of the mentionedThe question was posed to me in exam.This is a very interesting question from Precedence and Order of Evaluation topic in division Data Types, Operators and Expressions in C of C |
|
Answer» Right ANSWER is (B) a = b = c = d = 5; |
|