?
What will be the output of the following C code?
What will be the output of the following C code?
#include <stdio.h>
#include <math.h>
void main()
{
int k = fabs(-87);
printf("%d\n", k);
}
#include <stdio.h>
#include <math.h>
void main()
{
int k = fabs(-87);
printf("%d\n", k);
}
Join the Discussion
Login to post a comment or share your explanation.
Login