Q1. A C program comprises the given declaration:
static int x[8] = { 10, 20, 30, 40, 50, 60, 70, 80};
a) Illustrate the meaning of x.
b) Illustrate the meaning of (x + 2)
c) Find out the value of *x
d) Find out the value of (*x + 2)
Q2. By using the multidimensional array, write down a program in C to sort out a list of names in the alphabetical order.