C语言中我要定义一个数组,可是这个数组的元素的个数要根据我输入的元素的个数来确定 该怎么做。
2个回答
展开全部
由于空格和回车都用来分割数字了,所以以任何非数字字符作结束。供参考……
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
int *myarray(int *p,int *la){
unsigned N = sizeof(int)==4 ? 0xFFFFFF : 0xFFFF,i;
int lc,*q=(int *)malloc((lc=sizeof(int))*N);
if(!q){
printf("Failure to apply for a temporary space...\n");
return NULL;
}
for(i=0;;i++)
if(scanf("%d",q+i)!=1)
break;
if((p=(int *)malloc(lc*i))==NULL){
printf("Apply for actual use of space to fail...\n");
return NULL;
}
memcpy(p,q,lc*i);
free(q);
*la=i;
return p;
}
int main(void){
int *p=NULL,n,i;
printf("Please enter the array element value(Any letter end)...\n");
if(p=myarray(p,&n)){
printf("You enter %d element(s), so the array length is %d.\n",n,n);
for(i=0;i<n;printf("%d ",p[i++]));
free(p);
}
else printf("Input failed...\n");
printf("\n");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询