Files
AndroidStudioProjects
Automate
ControleMachine1
ControleMachine2
ControleMachineJava
DEV1.1
TP01:Commandes,Entier
TP02:Caracteres,Reels
TP03:Conditions
TP04:Types
TP05:Boucles
TP06:Tableaux
TP07:ChaineDeCaracteres
TP08:Adresses
TP09:AllocationDynamique
TP10:Fonctions
TP11:Debogueur
TP12:Structures
TP13:Fichiers
TP14:BiblioGraph
exemple.c
fenetre.c
formes.c
TP15:ListesChainees
TP16:Recursivite
TP17:Pile
DEV2.1
DEV3.1
DEV3.2
DEV3.4
DEV32
DEV4.4
SAe
.gitignore
Ex1TP2.mdj
README.md
Vote.java
pourchot_dev32.tar.gz
DEV/DEV1.1/TP14:BiblioGraph/fenetre.c

16 lines
282 B
C
Raw Normal View History

2022-11-30 15:31:01 +01:00
#include<stdlib.h>
#include<graph.h>
#include<stdio.h>
int main()
{
InitialiserGraphique();
CreerFenetre(10,10,480,270);
int touche;
while(!ToucheEnAttente){}
touche=Touche();
if(touche==0xff80){
FermerGraphique();
}
return EXIT_SUCCESS;
}