Computer Science, asked by evyavandas, 5 months ago

write scanf() function to read the following data list.
45.2​

Answers

Answered by Pablu
1

Answer:

Explanation:

#include<stdio.h>

void main()

{

double x = 45.2;

printf(" y = %f ", x);

return 0;

}

Similar questions