Home » C Programming » C-Library-Functions » Question
  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);
    }
    1. -65
    2. Compilation Error
    3. Garbage value
    4. 65
    5. None of these
Correct Option: D

65



Your comments will be displayed only after manual approval.