11 lines
145 B
C
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);
|
||
|
}
|