R1.03/cm2-nombres-code/double.c

12 lines
129 B
C
Raw Normal View History

2022-09-06 10:17:24 +02:00
#include <stdio.h>
void main()
{
double a = 0.1;
double b = 0.2;
double c = a + b;
printf("Value of c is: %.20f\n",c);
}