11 lines
230 B
C
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 */
|