Cours BUT1 Info R1.03 - Introduction à l'architecture des ordinateurs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
117 B

#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);
}