A program that read & display double number in Cpp.

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

void main()
{
    double n;
    clrscr();
    cout<<"Enter any double number : ";
    cin>>n;
    cout<<"The number you have given is : "<<n;
    getch();
}




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