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

11 lines
145 B
C
Raw Normal View History

2022-09-06 10:17:24 +02:00
#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);
}