14 lines
180 B
Plaintext
14 lines
180 B
Plaintext
|
/* premier programme */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%c", "H");
|
||
|
printf("%c", "e");
|
||
|
printf("%c", "l");
|
||
|
printf
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|