Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnologicalJerry committed May 19, 2022
1 parent 6ec8d48 commit 6a77892
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Promotions.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <stdio.h>

int main()
{
char a = 0xfb;
unsigned char b = 0xfb;

printf("a = %c", a);
printf("\nb = %c", b);

if (a == b)
printf("\nSame");
else
printf("\nNot Same");
return 0;
}

0 comments on commit 6a77892

Please sign in to comment.