如何动态分配一个由用户输入的数组?
int len=0;char *array=NULL;scanf("%d",&len);array=(char*)malloc(sizeof(char)*len);然后,就可像用数组一样用了.例如:array[0]='s';
计算机只能执行确定的格式.