9 lines
103 B
C
9 lines
103 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
char x = 64;
|
|
|
|
printf("%c\n", x);
|
|
printf("%d\n", x);
|
|
}
|