Examveda
Examveda

Which of the following declaration is illegal?

A. int a = 0, b = 1, c = 2;
int array[3] = {a, b, c};

B. int size = 3;
int array[size];

C. int size = 3;
int array[size] = {1, 2, 3};

D. All of the mentioned

Answer: Option C


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer