C Programming and Technical Programming Arrays

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

Read Solution (Total 1)

C Other Question

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