12 lines
208 B
C
12 lines
208 B
C
|
/* premier programme */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("%c%c%c%c%c %c%c%c%c%c%c\n", '\110', 'E', 'L', 'L', 'O', 'W', 'O', 'R', 'L', 'D', '\x21');
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|