Sail E0 Webinar
Question


What will be the output of the program ?


#include<stdio.h>
int main()
{
float a=3.15529;
printf("%2.1f\n", a);
return 0;
}
Options:
A .  3.00
B .  3.15
C .  3.2
D .  3
Answer: Option C

float a=3.15529; The variable a is declared as an float data type and initialized to value 3.15529;

printf("%2.1fn", a); The precision specifier tells .1f tells the printf function to place only one number

 after the .(dot).

Hence the output is 3.2



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers