// Pantea Aria // array of struct - collection of products // write a program that stores information for 5 products using a struct with two fields: // id (integer) // price (double) // After reading the data, your program should: // pass the array to a function to calculate the total price of the 5 products. // display the total #include #define MAX 5 struct product { int id; // id (integer) double price; // price (double) }; int main(void) { printf ("Total price is %lf\n", total); return 0; }