Langage c
Résolu/Fermé
midmad
-
24 nov. 2007 à 23:03
fiddy Messages postés 11069 Date d'inscription samedi 5 mai 2007 Statut Contributeur Dernière intervention 23 avril 2022 - 24 nov. 2007 à 23:15
fiddy Messages postés 11069 Date d'inscription samedi 5 mai 2007 Statut Contributeur Dernière intervention 23 avril 2022 - 24 nov. 2007 à 23:15
A voir également:
- Langage c
- Langage ascii - Guide
- Langage binaire - Guide
- Pascal langage - Télécharger - Édition & Programmation
- Langage pascal - Télécharger - Édition & Programmation
- Dev-Pascal - Télécharger - Édition & Programmation
1 réponse
fiddy
Messages postés
11069
Date d'inscription
samedi 5 mai 2007
Statut
Contributeur
Dernière intervention
23 avril 2022
1 844
24 nov. 2007 à 23:15
24 nov. 2007 à 23:15
Salut
Cordialement
#include <stdio.h> int main(){ int buffer[255]; int i=0; *buffer=-1; do{ scanf("%d",buffer+i); }while(buffer[i++]!=0); /*affichage du buffer*/ i=0; while(buffer[i]!=0) printf("%d ",buffer[i++]); puts(""); return 0; }
Cordialement