将数组传递给函数时出错

时间:2015-04-02 07:56:27

标签: c arrays argument-passing

我正在尝试将值传递给数组,或者更确切地说是将数组指针传递给函数BinaryToHex。但是我一直得到错误“函数BinaryToHex的冲突类型”。

以下是该计划的相关部分。

char *ConvertCodeToHex(char code[16])     
{                  
    char nibble[4];   
    char hexvalue[4];   
    int i;int j,k = 0;      

    for(i=0; code[i] != '\0'; i++)      
       {   
          if((i+5)%4 == 0)           
            {   
                nibble[j] = '\0';
                j = 0;              
                hexvalue[k] = BinaryToHex(nibble);
                k++;
            }
            nibble[j] = code[i];
            j++;
       }
    strncpy(finalhex, hexvalue, 4); //finalhex is a global character array
    return finalhex;
}
char BinaryToHex(char b[4])       //The error is caught in this line of code.
{
    int temp = 0,i; char buffer;
    for(i=4; i >= 0; i-- )   
        {
            int k = b[i]-='0';
            temp +=  k*pow(2,i);
        }
//Converting decimal to hex.
    if (temp == 10)
        return 'A';
    else if (temp == 11)
        return 'B';
    else if (temp == 12)
        return 'C';
    else if (temp == 13)
        return 'D';
    else if (temp == 14)
        return 'E';
    else if (temp == 15)
        return 'F';
    else
        return (char)(((int)'0')+ temp);

}

3 个答案:

答案 0 :(得分:0)

您需要在char BinaryToHex(char b[4]);之前将函数转发声明添加为ConvertCodeToHex()。否则,当从BinaryToHex()调用ConvertCodeToHex()时,您可能无法了解功能说明。

答案 1 :(得分:0)

在调用它之前需要函数声明,所以在顶部添加额外的行,例如

char BinaryToHex(char b[4]);
char *ConvertCodeToHex(char code[16])     
{                  
    char nibble[4];   
    char hexvalue[4];   
    int i;int j,k = 0;      

    for(i=0; code[i] != '\0'; i++)      
       {   
          if((i+5)%4 == 0)           
            {   
                nibble[j] = '\0';
                j = 0;              
                hexvalue[k] = BinaryToHex(nibble);
                k++;
            }
            nibble[j] = code[i];
            j++;
       }
    strncpy(finalhex, hexvalue, 4); //finalhex is a global character array
    return finalhex;
}    

答案 2 :(得分:0)

您不需要在函数定义中传递数组索引。只需简单地写一下char BinaryToHex(char b [])。看看它会起作用。