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

11 lines
116 B
C

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