Comment afficher ascii en C++
Résolu
FOX
-
Pacorabanix Messages postés 3248 Date d'inscription Statut Membre Dernière intervention -
Pacorabanix Messages postés 3248 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
SVP COMMENT ECRIRE UN PROGRAMME EN C++ QUI AFFICHE LES CODES ASCII
MERCI
SVP COMMENT ECRIRE UN PROGRAMME EN C++ QUI AFFICHE LES CODES ASCII
MERCI
A voir également:
- Afficher code ascii en c
- Code ascii - Guide
- Code puk bloqué - Guide
- Comment déverrouiller un téléphone quand on a oublié le code - Guide
- Code activation windows 10 - Guide
- Code ascii : 37 2d 3f 3d 31 réponse ✓ - Forum Loisirs / Divertissements
4 réponses
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();
}
Pacorabanix
Messages postés
3248
Date d'inscription
Statut
Membre
Dernière intervention
663
c'est du C pas du C++.