1.

What will be the output of the following C code?
#include <stdio.h>
#include <math.h>
void main()
{
int n = fabs(-65);
printf("%d n", n);
}

A. -65
B. Compilation Error
C. Garbage value
D. 65
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs