Pages

Sunday, March 24, 2013


 Création et compilation de mon premier programme en langage C


/* Mon premier programme */
#include <stdio.h>
#include <conio.h>
void main()
{
printf("Hello, World!");
getch();
}

No comments:

Post a Comment