write scanf() function to read the following data list.
45.2
Answers
Answered by
1
Answer:
Explanation:
#include<stdio.h>
void main()
{
double x = 45.2;
printf(" y = %f ", x);
return 0;
}
Similar questions