A program in ‘C’ language contains the following declaration:

b) A program in ‘C’ language contains the following declaration:
static int x[8] = {1,2,3,4,5,6,7,8};
i) What is the meaning of x?
ii) What is the meaning of (x + 2)?
iii) What is the meaning of *x?
iv) What is the meaning of (*x + 2)?
v) What is the meaning of *(x + 2)?


Leave a Reply