22 lines
348 B
Plaintext
22 lines
348 B
Plaintext
|
/* 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",'!');
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|