write a program to initialize the value as 5.800000 & display the value on the monitor?
#include <stdio.h>
int main() {
// write a program to initialize the value as 5.800000 & display the value on the monitor?
double value = 5.800000;
printf("%0.6lf", value);
return 0;
}
Comments
Leave a comment