What is the output of #include "stdio.h"
int main()
{
float a = 123/100;
printf("%f", a);
return 0;
} What is the output? And please explain how ?
Answers
Answered by
0
Answer:
Output is 1.23
you have to print value of a which is already given..it is 123/100 or 1.23
Similar questions