Which of the following declaration is correct? *
1 point
int a(25);
int size = 10, b[size];
int c = { 0, 1, 2};
None of the Above
Answers
Answered by
3
Answer:
option 1 and 3
int a (25);
int c={0,1,2};
Similar questions