Written By Unknown on Friday, October 11, 2013 | 12:01 AM
=> Write a program in C to read and print the given float? Solution : #include<stdio.h> #include<conio.h> main() { float a; printf("Please Enter The Number : "); scanf("%f",&a); printf("The Number Is %f",a); getch(); } Program Analysis :
Post a Comment