字符串变量本来是整形变量的一种变形,就是那个ascii码,你说的将每个字符赋值给一个数组,就比如这样:include <stdio.h> include <string.h> int main(){ char p[]="abcde";int a[14],i;for(i=0;p[i];i++)a[i]=p[i];for(i=0;p[i];i++)printf("%c",a[i]);printf("\n...
const void *str2, size_t n) 从存储区 str2 复制 n 个字符到存储区 str1。