éxecuter un graphic en language c

Résolu/Fermé
hmopi Messages postés 2 Date d'inscription samedi 5 janvier 2013 Statut Membre Dernière intervention 6 janvier 2013 - 5 janv. 2013 à 18:00
hmopi Messages postés 2 Date d'inscription samedi 5 janvier 2013 Statut Membre Dernière intervention 6 janvier 2013 - 6 janv. 2013 à 00:50
Salut je veux éxecuter un graphic dans ( Dev c++ 4.9.9.2 ) mais ça marche pas
Voila le code
/*graphic 1*/
#include <graphics.h>
#include <math.h>
#include <conio.h>
int gd , gm ;
float x,y ;
main ()
{ detectgraph (&gd,&gm); initgraph(&gd,&gm,""); x=-15 ;
while ( x<=15)
{ y=10*sin(5*x)+5*cos(3*x);
putpixel (10*x+200 , 10*y+200 , 15); x+=0.001; }
getch() ; closegraph() ; return 0 ;
}

1 réponse

hmopi Messages postés 2 Date d'inscription samedi 5 janvier 2013 Statut Membre Dernière intervention 6 janvier 2013
6 janv. 2013 à 00:50
Le probleme est résolu , le(Dev c++ 4.9.9.2 )ne lit pas les ancien bibliothèque comme conio.h et graphics.h
alor il faut l'éxecuter a borland .
0