8 lines
81 B
C
8 lines
81 B
C
#include <stdio.h>
|
|
|
|
|
|
int main() {
|
|
printf("%c\n", '\x41'); //100 0100
|
|
|
|
return 0;
|
|
} |