23 lines
374 B
C
23 lines
374 B
C
/* 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;
|
|
}
|
|
|