Developpement/23DEV1.1/TPS1/TP01/03-caractere/crypted.c

14 lines
312 B
C
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
#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;
}*/
//le caractère en Latin 1 n'est pas représenté
int main(void) {
printf("%c\n", 'î');
return EXIT_SUCCESS;
}
//erreur de caractère