web-dev-qa-db-fra.com

Avertissement: l'indice de tableau a le type char

Lorsque j'exécute ce programme, j'obtiens un avertissement "l'indice de tableau a le type 'char'". S'il vous plaît, aidez-moi où ça va mal. J'utilise code :: blocks IDE

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
void NoFive()
{
    long long int cal;
    char alpha[25];
    char given[100] = "the quick brown fox jumped over the cow";
    int num[25];
    int i, k;
    char j;
    j = 'a';
    k = 26;
    cal = 1;
    for(i = 0; i <= 25; i++)
    {
        alpha[i] = j++;
        num[i] = k--;
      //  printf("%c = %d \n", alpha[i], num[i]);
    }
    for(i = 0; i <= (strlen(given) - 1); i++)
    {
        for(j = 0; j <= 25; j++)
        {
         if(given[i] == alpha[j]) ***//Warning array subscript has type char***
         {
            cal = cal * num [j]; ***//Warning array subscript has type char***
         }
         else
         {

         }
        }
    }
printf(" The value of cal is %I64u ", cal);
}

main()
{
NoFive();
}
35

Simple, changer

char j;

à

unsigned char j;

ou simplement _ (u)int

unsigned int j;
int j;

De Avertissements GCC

- Wchar-subscripts Avertit si un indice de tableau a le type char. Il s'agit d'une cause d'erreur courante, car les programmeurs oublient souvent que ce type est signé sur certaines machines . Cet avertissement est activé par -Wall.

Le compilateur ne veut pas que vous spécifiiez par inadvertance un index de tableau négatif. Et d'où l'avertissement!

65
Pavan Manjunath