DEV/DEV1.1/TP03/test.c
2024-09-10 14:03:34 +02:00

11 lines
230 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("Unicode : %c%c\n", '\xC3', '\xAE');
printf("Latin 1 : %c\n", '\xEE');
return EXIT_SUCCESS;
}
/* On en déduit que le caractère î n'existe pas en Latin 1 */