Question programe c
Fermé
zakout
-
9 janv. 2012 à 00:57
Hxyp Messages postés 401 Date d'inscription vendredi 28 janvier 2011 Statut Membre Dernière intervention 27 avril 2014 - 10 janv. 2012 à 02:27
Hxyp Messages postés 401 Date d'inscription vendredi 28 janvier 2011 Statut Membre Dernière intervention 27 avril 2014 - 10 janv. 2012 à 02:27
A voir également:
- Question programe c
- Windows ne trouve pas c program ✓ - Forum Windows 10
- The following components are required to run this program microsoft visual c++ runtime - Forum Windows 8 / 8.1
- Program c++ download - Télécharger - Langages
- The following component(s) are required to run this program microsoft visual c++ runtime - Forum loisirs/vie pratique
- C:\programdata\microsoft\windows\start menu\programs\startup\$mcreboota5e6deaa56$.lnk ✓ - Forum Virus
1 réponse
Hxyp
Messages postés
401
Date d'inscription
vendredi 28 janvier 2011
Statut
Membre
Dernière intervention
27 avril 2014
54
Modifié par Hxyp le 10/01/2012 à 02:31
Modifié par Hxyp le 10/01/2012 à 02:31
Bonjour, vous pouvez utiliser strncmp http://www.cplusplus.com/reference/cstring/strncmp/ ou memcmp :
le principe :
boucle sur la taille de la chaine avec i et j=0
if(!strncmp(&chaine[i],sous_chaine,taille_sous_chaine)){
alors on décale i +=taille_sous_chaine
} else {
chaine[j]=chaine[i];
j++;
}
i++;
après la boucle chaine[j]='\0';
le principe :
boucle sur la taille de la chaine avec i et j=0
if(!strncmp(&chaine[i],sous_chaine,taille_sous_chaine)){
alors on décale i +=taille_sous_chaine
} else {
chaine[j]=chaine[i];
j++;
}
i++;
après la boucle chaine[j]='\0';