R1.03/cm2-nombres-code/char.c
Francois Lesueur f6827b7c87 update code cm2
2022-09-07 16:19:04 +02:00

11 lines
145 B
C

#include <stdio.h>
void main()
{
unsigned char a = 155;
unsigned char b = 155;
unsigned char c = a + b;
printf("Value of c is: %d\n",c);
}