DEV/BUT1/DEV1.1/Commandes/salut.c

11 lines
136 B
C
Raw Permalink Normal View History

2024-02-01 13:55:03 +01:00
/* premier programme */
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return EXIT_SUCCESS;
}