16 lines
348 B
C
Raw Normal View History

#include<stdlib.h>
#include<graph.h>
int main()
{
couleur c;
InitialiserGraphique();
CreerFenetre(10,10,720,480);
EcrireTexte(10,100,"Hello World !",2);
c=CouleurParNom("lightgreen");
ChoisirCouleurDessin(c);
RemplirRectangle(0,0,600,400);
Touche();
FermerGraphique();
return EXIT_SUCCESS;
}