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

11 lines
116 B
C
Raw Permalink Normal View History

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