Multiple Choice
Which is correct representation of C statement? e = a * b + c / d * f;
A) e = (a * (b +(c /(d * f) ) ) ) ;
B) e = ((a * b) + (c / (d * f) ) ) ;
C) e = ((a * b) + ((c / d) * f) ) ;
D) Both e = ((a * b) + (c / (d * f) ) ) ; and e = ((a * b) + ((c / d) * f) ) ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q38: Which of the following is not an
Q39: Which of the following is not a
Q40: Which among the following is NOT a
Q41: Which of the following declaration is illegal?<br>A)char
Q42: Why do variable names beginning with the
Q43: Which of the following is not a
Q44: Comment on the following statement n =
Q45: What will be the value of the
Q47: Which keyword is used to prevent any
Q48: enum types are processed by _<br>A)Compiler<br>B)Preprocessor<br>C)Linker<br>D)Assembler