C Programming and Technical Programming Arrays

When we write num[100] = 99.
How many elements can be stored inside the array variable num?

A. The statement gives no clue about the number of elements can be stored
B. 100
C. Infinite number of elements
D. 99

Read Solution (Total 1)

C Other Question

interview question slove int i=3,j=2,k=0,m;
m = ++i && ++j || ++k;
printf(ā€œ%d %d %d %dā€, i , j, k,m);