12 lines
164 B
C
12 lines
164 B
C
|
/* premier programme */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%c \n",'Hello ');
|
||
|
printf("%c \n", 'world!');
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|