基本的に、ユーザーが数字を入力するCプログラムがあります(例:4)。それが定義しているのは、配列に入る整数の数です(最大10)。ただし、ユーザーが「1 5 2 6」と入力できるようにしたい(たとえば)。つまり、空白で区切られたリストとして。
ここのところ:
#include<stdio.h>;
int main()
{
int no, *noArray[10];
printf("Enter no. of variables for array");
scanf("%d", &no);
printf("Enter the %d values of the array", no);
//this is where I want the scanf to be generated automatically. eg:
scanf("%d %d %d %d", noArray[0], noArray[1], noArray[2], noArray[3]);
return 0;
}
どうすればよいかわかりませんか?
ありがとう