- //-- Inclusions -----------------------------------------------------------------------
- #include <stdio.h> // Pour: printf
- #include <conio.h> // Pour: getch
- //--------------------------------------------------------------------------------------
-
- //-- Corps du programme -----------------------------------------------------------
- void main(void)
- {
- printf("HELLO WORLD"); // Affichage du texte
-
- getch(); // Fin du programme par n'importe quelle touche
- }
- //--------------------------------------------------------------------------------------
//-- Inclusions -----------------------------------------------------------------------
#include <stdio.h> // Pour: printf
#include <conio.h> // Pour: getch
//--------------------------------------------------------------------------------------
//-- Corps du programme -----------------------------------------------------------
void main(void)
{
printf("HELLO WORLD"); // Affichage du texte
getch(); // Fin du programme par n'importe quelle touche
}
//--------------------------------------------------------------------------------------