23 lines
364 B
C
23 lines
364 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("a\n")
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|