DEV/DEV1.1/TP02/encodages.c
2022-09-14 18:00:01 +02:00

7 lines
162 B
C

#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("Unicode : %c%c\n", '\xC3', '\xAE');
printf("Latin 1 : %c\n", '\xEE');
return EXIT_SUCCESS;
}