Advanced C Programming Spring 2004 Exercise 1 (Arrays. pointers and arrays as a parameter) Write a program, that first reads the lotto numbers generated in the saturday evening in TV and after that your own 7 numbers. Both number sets contains 7 numbers. So no extra numbers are dealt. The next step in the program is that it finds out how many numbers are correct in your own row. Then it allocates space for an array with a space for exactly your correct numbers. After the allocation the program stores your correct numbers in this new array. Finally the program displays your lottonumbers (7 numbers) and your correct numbers (0, 1, 2, or 7). Remark. You have to use functions read_numbers, count_correct_numbers, allocate_array, store_correct_numbers and display_numbers in your program.