9 lines
136 B
C
9 lines
136 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
char a_letter = 'a' - 32; //32 = 2^5//
|
||
|
printf("%c\n", a_letter);
|
||
|
return 0;
|
||
|
}
|