

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { double var = 4 % 0 * 1 - 6 / 3; printf("%lf", var); } |
A. | -3 |
B. | Compilation Error |
C. | -2 |
D. | Floating point Exception |
E. | None of these |
Answer» E. None of these | |