long double constant in c

C Programming Language / Variable in C Language

1991

Program:

#include"stdio.h"
int main()
{
   const long double a = 655454.7;  // a is long double constant
   printf("long double constant: %Lf \n", a);
   
   return 0;
} 

Output:

long double constant: 655454.7000000000000000000
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.