1.

What will be the output of the following C code?#include <stdio.h>#include <math.h> int main() { unsigned int num = 15; printf("%f n", fabs(num)); return 0; }

A. Compilation Error
B. Undefined behaviour
C. 15
D. 15.000000
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs