A program that read & display double number in C.

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

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



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