Afficher des variables en mode graphique sous Dos ?

Afficher des variables en mode graphique sous Dos ? - Programmation

Marsh Posté le 08-11-2001 à 16:25:44    

J'ai un problème en C avec Turbo C 3
 
void init_mode_graphique(void)
{
  /* request autodetection */
  int gdriver = DETECT, gmode, errorcode;
 
  /* initialize graphics and local variables */
  initgraph(&gdriver, &gmode, "" );
}
Ensuite, comment je fais pour afficher des variables ??? Pour les phrases j'utilise outtextxy(x,y,"Phrase" );
Pour afficher une variables c'est comment ??? Avec printf("%d",temp); ca plante à tous les coups.

Reply

Marsh Posté le 08-11-2001 à 16:25:44   

Reply

Marsh Posté le 08-11-2001 à 16:35:49    

Ben tu convertit ta variable en texte...
regarde l'aide de itoa
 
Tiens je t'la donne mais en english  :D :
Syntax
 
#include <stdlib.h>
char *itoa(int value, char *string, int radix);
 
Description
 
Converts an integer to a string.
itoa converts value to a null-terminated string and stores the result in string. With itoa, value is an integer.
radix specifies the base to be used in converting value; it must be between 2 and 36, inclusive. If value is negative and radix is 10, the first character of string is the minus sign (-).
 
Note: The space allocated for string must be large enough to hold the returned string, including the terminating null character (\0). itoa can return up to 17 bytes.
 
Return Value
 
itoa returns a pointer to string.


---------------
Des bons sites pour Delphi? http://forum.hardware.fr/forum2.php3?post=16838&cat=10 -- informaticien -- http://www.z0rglub.com/phpwebgallery/ -- Delphi :love:
Reply

Marsh Posté le 08-11-2001 à 16:40:47    

tu écris ta variable dans une chaîne et tu affiche la chaîne
char var[255];
sprintf(var,"%s",temp);
outtextxy(x,y,var);
voila :hello:

Reply

Marsh Posté le 08-11-2001 à 16:43:03    

je me suis trompé : %d pas %s   ;)  
char var[255];  
sprintf(var,"%d",temp);  
outtextxy(x,y,var);

Reply

Marsh Posté le 08-11-2001 à 16:51:58    

hey merci !!! :)

Reply

Marsh Posté le 08-11-2001 à 16:55:05    

Hey de rien  ;)


---------------
Des bons sites pour Delphi? http://forum.hardware.fr/forum2.php3?post=16838&cat=10 -- informaticien -- http://www.z0rglub.com/phpwebgallery/ -- Delphi :love:
Reply

Marsh Posté le 08-11-2001 à 16:57:10    

mais oui y a pas de quoi ! a charge de revanche

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed