strcmp — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
| Déclaré dans l'en-tête <string.h> |
||
|
|
||
Compare deux chaînes d'octets à zéro terminal. La comparaison est faite lexicographique .
Original:
Compares two null-terminated byte strings. The comparison is done lexicographically.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Paramètres
| lhs, rhs | - | pointeurs vers les chaînes d'octets à zéro terminal à comparer Original: pointers to the null-terminated byte strings to compare The text has been machine-translated via Google Translate. |
Retourne la valeur
Valeur négative si lhs est moins rhs .
Original:
Negative value if lhs is less than rhs.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
0 si lhs est égal à' rhs .
Original:
0 if lhs is equal to rhs.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Valeur positive si lhs est supérieure à' rhs .
Original:
Positive value if lhs is greater than rhs.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Exemple
Voir aussi
compare un certain nombre de caractères de deux chaînes Original: compares a certain amount of characters of two strings The text has been machine-translated via Google Translate. (fonction) [edit] | |
compare deux tampons Original: compares two buffers The text has been machine-translated via Google Translate. (fonction) [edit] | |
compare deux chaînes en fonction de la localisation en cours Original: compares two strings in accordance to the current locale The text has been machine-translated via Google Translate. (fonction) [edit] | |
C++ documentation for strcmp | |