[C] Compilateur plante sur un scanf
Résolu/Fermé
A voir également:
- [C] Compilateur plante sur un scanf
- Codeblocks avec compilateur - Télécharger - Langages
- Explorateur windows plante - Guide
- "Pourquoi systemsettings.exe plante?" ✓ - Forum Virus
- Plante - Guide
- Fortnite plante quand je rejoins un groupe - Forum jeux en ligne
4 réponses
mype
Messages postés
2435
Date d'inscription
jeudi 1 novembre 2007
Statut
Membre
Dernière intervention
16 août 2010
436
19 déc. 2007 à 18:42
19 déc. 2007 à 18:42
il manque le & avant l_choix
phil232
Messages postés
607
Date d'inscription
mardi 25 septembre 2007
Statut
Membre
Dernière intervention
31 janvier 2008
178
19 déc. 2007 à 18:45
19 déc. 2007 à 18:45
https://en.wikipedia.org/wiki/Scanf
int main(void) {
int n;
while (scanf("%d", &n) > 0) // numeric &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
printf ("%d\n", n);
return 0;
}
int main(void) {
char word[20];
scanf("%19s", word); // string, pas de &&&&&&&&&&&&&&&&&
printf ("%s\n", word);
return 0;
}
int main(void) {
int n;
while (scanf("%d", &n) > 0) // numeric &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
printf ("%d\n", n);
return 0;
}
int main(void) {
char word[20];
scanf("%19s", word); // string, pas de &&&&&&&&&&&&&&&&&
printf ("%s\n", word);
return 0;
}