Hi
What I need to do is declare three one dimensional arrays neamed price, quantity and amount. Each array shoule be capable of holding 10 elements. Using a for loop input values for the price and quantity arrays. The entries in the amount array should be the product of the corresponding values in the price and quantity arrays. After all of the data has been entered it should display the following output.
Quantity Price Amount
______ ____ ______
I know my program is a bit of a mess and not with out structure problems because I get a thought in my head and just type it out before I forget but if I could at least get help with the part of making the array print out correctly I would appericate it. Please help!

Code:
#include <stdio.h>
int main()

{
#define Bulk 10    
#define How_Much 10
#define Sticker_Shock 10
int Quantity[Bulk];  
int Price[How_Much];

int i;
float Amount[Sticker_Shock];
    
    
        for (i = 0; i < Bulk; i++)
    {
        printf("Quantity");
        scanf("%d", &Quantity);
         
    }
             
    for (i = 0; i < Bulk; i++)    
        printf("Quantity %d = %d\n", i, Quantity[i]);  
   
   
   for (i = 0; i < How_Much; i++)
   {
       printf("Price: ");
       scanf("%d", &Price[i]);
   }
  
   for (i = 0; i < How_Much; i++)
       printf("Price %d = %d\n", i, Price[i]);    
   }
   
   Amount=Quantity * Price;
   }
   for (i = 0; i <= 9; i++)
   
   printf("%3d %7d %6d\n", Amount,Quantity,Price);
   
    getchar();
    getchar();
    return 0;
}