I am using scanf() to get a set of ints from the user. But I would like the user to supply all 4 ints at once instead of 4 different promps. I know I can get one value by do
int a[1000] ; for(int i = 0 ; i <= 3 , i++) scanf("%d" , &a[i]) ;