DEV/BUT1/DEV1.1/Caract#U00e8res/salut2.c

12 lines
208 B
C
Raw Normal View History

2024-02-01 13:55:03 +01:00
/* 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;
}