Friday, 9 May 2014

C Simple program using float data type

C PROGRAM USING FLOAT DATATYPE

#include
#include
main(){
float a;
a=10.2;
printf("the value of a is %f",a);
getch();
}

No comments:

Post a Comment