Comment afficher ascii en C++
Résolu/Fermé
FOX
-
19 janv. 2008 à 00:55
Pacorabanix Messages postés 3248 Date d'inscription jeudi 23 août 2007 Statut Membre Dernière intervention 19 mai 2013 - 1 déc. 2010 à 16:09
Pacorabanix Messages postés 3248 Date d'inscription jeudi 23 août 2007 Statut Membre Dernière intervention 19 mai 2013 - 1 déc. 2010 à 16:09
A voir également:
- Afficher code ascii en c
- Le code ascii - Guide
- À l’aide des tableaux ci-dessous, trouvez le mot dont le code ascii est le suivant : 72 65 6a 6f 69 6e 64 72 65 - Forum C
- Code puk bloqué - Guide
- Code telephone oublié - Guide
- Code activation windows 10 - Guide
4 réponses
charif591
Messages postés
8
Date d'inscription
lundi 5 novembre 2007
Statut
Membre
Dernière intervention
30 octobre 2011
4
19 janv. 2008 à 01:35
19 janv. 2008 à 01:35
avec borland c ou turbo c tu peut faire ça :
/* programme : ascii1.c */
#include <stdio.h>
#include <stdio.h>
void main (void)
{
int i;
clrscr();
for(i=0; i<=255; i++)
{
putch(i); putch(' ');
}
getch();
}
/* programme : ascii1.c */
#include <stdio.h>
#include <stdio.h>
void main (void)
{
int i;
clrscr();
for(i=0; i<=255; i++)
{
putch(i); putch(' ');
}
getch();
}
19 janv. 2008 à 01:51