Ajout des fichiers des séances précédentes
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,21 @@
|
||||
/* premier programme */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("H\n");
|
||||
printf("e\n");
|
||||
printf("l\n");
|
||||
printf("l\n");
|
||||
printf("o\n");
|
||||
printf(" \n");
|
||||
printf("W\n");
|
||||
printf("o\n");
|
||||
printf("r\n");
|
||||
printf("l\n");
|
||||
printf("d\n");
|
||||
printf("!\n");
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("%c\n", '\x37');
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("%c\n", '\x41');
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user