DEV/DEV1.1/TP01/AinASCII.c

9 lines
136 B
C
Raw Normal View History

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