#include int main() { float a 8.0625; if(a == 8.0625) { printf("1"); } else { } printf("0");

icon
Related questions
Question

What will be the output of the following C program?(Assume IEEE-754 standard being used)

#include<stdio.h>
int main()
{
}
A. 1
B. 0
float a 8.0625;
8.0625)
if(a
{
}
else
{
}
=
printf("1");
printf("0");
C. run time error
D. both 0 and 1 will be printed
Transcribed Image Text:#include<stdio.h> int main() { } A. 1 B. 0 float a 8.0625; 8.0625) if(a { } else { } = printf("1"); printf("0"); C. run time error D. both 0 and 1 will be printed
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer