- 1
How to display into a lists of inputs from the 5 users
2 Answers
+ 1
Marjy Caliso 
int a,b,c,d,e;
scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
is five inputs
or 
int n_users; /* number users or number of loops */
int input; 
scanf("%d", &n_users);
for (int c = 0; c <= n_users-1; c++){
      scanf("%d", &input);
}
0
Plz add more context.






