Ajout des fichiers des séances précédentes
This commit is contained in:
22
DEV1.1/TP03/salut.c
Normal file
22
DEV1.1/TP03/salut.c
Normal file
@@ -0,0 +1,22 @@
|
||||
/* premier programme */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("%c", 'H');
|
||||
printf("%c", 'e');
|
||||
printf("%c", 'l');
|
||||
printf("%c", 'l');
|
||||
printf("%c", 'o');
|
||||
printf("%c", ' ');
|
||||
printf("%c", 'w');
|
||||
printf("%c", 'o');
|
||||
printf("%c", 'r');
|
||||
printf("%c", 'l');
|
||||
printf("%c", 'd');
|
||||
printf("%c", '!');
|
||||
printf("%c", '\n');
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
Reference in New Issue
Block a user