comparer par ordre alphab c3 a9tique deux chaines c

Solutions on MaxInterview for comparer par ordre alphab c3 a9tique deux chaines c by the best coders in the world

showing results for - "comparer par ordre alphab c3 a9tique deux chaines c"
Jan
06 Oct 2020
1#include <stdio.h>
2 
3#include <stdlib.h>
4 
5  
6 
7int comparaison(char chaine1[], char chaine2[]){
8 
9    int i = 0;
10 
11    for( i=0 ; (chaine1[i]!='\0') && (chaine2[i]!='\0') ; i++){
12 
13        if(chaine1[i]!=chaine2[i]){
14 
15            if(chaine1[i]<chaine2[i]){
16 
17                return -1;
18 
19            }
20 
21            if(chaine1[i]>chaine2[i]){
22 
23                return 1;
24 
25            }
26 
27        }
28 
29    }
30 
31    return 0;
32 
33}
34 
35int main(){
36 
37    char mot1;
38 
39    char mot2;
40 
41    scanf("%s", &mot1);
42 
43    scanf("%s", &mot2);
44 
45    printf("%i",comparaison(&mot1,&mot2));
46 
47}
48