

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> #include <math.h> int main() { int n = 90; printf("%f n", sin(n)); return 0; } |
A. | Undefined behaviour |
B. | 1.000000 |
C. | Compilation Error |
D. | 0.893997 |
E. | None of these |
Answer» E. None of these | |