Ajout des fichiers des séances précédentes

This commit is contained in:
Simoes Lukas
2024-09-10 14:03:34 +02:00
parent db750e42fa
commit 1533259a4d
16 changed files with 3340 additions and 0 deletions

10
DEV1.1/TP03/test.c Normal file
View File

@@ -0,0 +1,10 @@
#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 */