DEV/DEV1.1/TP02:Caracteres,Reels/chiffre7ascii.c

8 lines
70 B
C
Raw Normal View History

#include <stdio.h>
int main() {
2022-09-21 11:43:38 +02:00
printf("%c\n", '\x37');
return 0;
}