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

12 lines
117 B
C
Raw Normal View History

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