MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues in C Programming
→
In which order do the following gets evaluated..
1.
In which order do the following gets evaluated
A.
2134
B.
1234
C.
4321
D.
3214
Answer» B. 1234
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
The expression of the right hand side of operators doesn't get evaluated if the left hand side determines the outcome.
In the expression the order of Assignment is NOT decided by Associativity of operators
Are the following two statement same?
Will the expression be disallowed by the compiler?
Which of the following is the correct order of evaluation for the below expression?
In which order do the following gets evaluated
Which of the following is the correct order if calling functions in the below code?
Which of the following are unary operators in C?
What will be the output of the program?_x000D_ #include<stdio.h>_x000D_ int main()_x000D_ {_x000D_ int i=4, j=-1, k=0, w, x, y, z;_x000D_ w = i || j || k;_x000D_ x = i && j && k;_x000D_ y = i || j &&k;_x000D_ z = i && j || k;_x000D_ printf("%d, %d, %d, %d\n", w, x, y, z);_x000D_ return 0;_x000D_ }
What will be the output of the program?_x000D_ #include<stdio.h>_x000D_ int main()_x000D_ {_x000D_ int x=12, y=7, z;_x000D_ z = x!=4 || y == 2;_x000D_ printf("z=%d\n", z);_x000D_ return 0;_x000D_ }
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply