Sail E0 Webinar
Question


If the size of integer is 4bytes, What will be the output of the program?


#include<stdio.h>#define CUBE(x) (x*x*x)
int main()
{
int arr[] = {12, 13, 14, 15, 16};
printf("%d, %d, %d\n", sizeof(arr), sizeof(*arr), sizeof(arr[0]));
return 0;
}
Options:
A .  10, 2, 4
B .  20, 4, 4
C .  16, 2, 2
D .  20, 2, 2
Answer: Option B

No answer description available for this question. 



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers