c语言中如何把数组转换成字符串?最好能给个代码

2024-11-24 11:11:43
推荐回答(1个)
回答1:

int a[10];
char ch[11];

for( ...... )
ch[i] = (char)a[i];