将int数组转换为char数组

时间:2011-01-17 11:43:56

标签: c

我有一个整数数组int example[5] = {1,2,3,4,5}。现在我想使用C而不是C ++将它们转换为字符数组。我该怎么办?

5 个答案:

答案 0 :(得分:9)

根据您的真实需要,这个问题有几个可能的答案:

int example[5] = {1,2,3,4,5};
char output[5];
int i;

直接拷贝给出ASCII控制字符1 - 5

for (i = 0 ; i < 5 ; ++i)
{
    output[i] = example[i];
}

字符'1' - '5'

for (i = 0 ; i < 5 ; ++i)
{
    output[i] = example[i] + '0';
}

表示1 - 5的字符串。

char stringBuffer[20]; // Needs to be more than big enough to hold all the digits of an int
char* outputStrings[5];

for (i = 0 ; i < 5 ; ++i)
{
    snprintf(stringBuffer, 20, "%d", example[i]);
    // check for overrun omitted
    outputStrings[i] = strdup(stringBuffer);
}

答案 1 :(得分:2)

#include <stdio.h>

int main(void)
{
    int i_array[5] = { 65, 66, 67, 68, 69 };
    char* c_array[5];

    int i = 0;
    for (i; i < 5; i++)
    {   
        //c[i] = itoa(array[i]);    /* Windows */

        /* Linux */
        // allocate a big enough char to store an int (which is 4bytes, depending on your platform)
        char c[sizeof(int)];    

        // copy int to char
        snprintf(c, sizeof(int), "%d", i_array[i]); //copy those 4bytes

        // allocate enough space on char* array to store this result
        c_array[i] = malloc(sizeof(c)); 
        strcpy(c_array[i], c); // copy to the array of results

        printf("c[%d] = %s\n", i, c_array[i]); //print it
    }   

    // loop again and release memory: free(c_array[i])

    return 0;
}

输出:

c[0] = 65
c[1] = 66
c[2] = 67
c[3] = 68
c[4] = 69

答案 2 :(得分:1)

您可以使用以下表达式将单个数字整数转换为相应的字符:

int  intDigit = 3;
char charDigit = '0' + intDigit;  /* Sets charDigit to the character '3'. */

请注意,这仅对单个数字有效。推断上述内容以对阵数组应该是直截了当的。

答案 3 :(得分:0)

您需要创建数组,因为sizeof(int)(几乎肯定)与sizeof(char)==1不同。

有一个循环,你可以char_example[i] = example[i]


如果你想要的是整数转换为字符串,你可以将整数加到'0',但前提是你确定你的整数在0到9之间,否则你需要使用更复杂的sprintf

答案 4 :(得分:0)

在纯C中,我会这样做:

char** makeStrArr(const int* vals, const int nelems)
{
    char** strarr = (char**)malloc(sizeof(char*) * nelems);
    int i;
    char buf[128];

    for (i = 0; i < nelems; i++)
    {
        strarr[i] = (char*)malloc(sprintf(buf, "%d", vals[i]) + 1);
        strcpy(strarr[i], buf);
    }
    return strarr;
}

void freeStrArr(char** strarr, int nelems)
{
    int i = 0;
    for (i = 0; i < nelems; i++) {
        free(strarr[i]);
    }
    free(strarr);
}

void iarrtostrarrinc()
{
    int i_array[] = { 65, 66, 67, 68, 69 };
    char** strarr = makeStrArr(i_array, 5);
    int i;
    for (i = 0; i < 5; i++) {
        printf("%s\n", strarr[i]);
    }
    freeStrArr(strarr, 5);
}