A program that read & display floating point number in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    float n;
    clrscr();
    printf("Enter any floating point number : ");
    scanf("%f",&n);
    printf("The number you have given is : ");
    printf("%f",n);
    getch();
}



////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........