Home » C Programming » Operators » Question
  1. Size of an array can be evaluated by __________.
    (Assuming array declaration int array[25];)
    1. 10 * sizeof(array);
    2. sizeof(array[10]);
    3. sizeof(*array);
    4. sizeof(array);
    5. None of these
Correct Option: D

sizeof(array);



Your comments will be displayed only after manual approval.