12 lines
129 B
C
12 lines
129 B
C
|
#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);
|
||
|
|
||
|
}
|