#include #include // Problem: Read 10 numbers from the keyboard and store them. // Solution #2 // Because we use an array we can use a for loop. int main() { int a[10]; int i; for(i=0; i< 10; i++) { printf("Enter a number: "); scanf(" %d", &a[i]); } system("pause"); }