Update appNew update is available. Click here to update.
Topics

What is the output

Easy
0/10

Problem statement

Assume integer takes 4 bytes and integer pointer 8 bytes.

int a[5];
int *c;
cout << sizeof(a) << “ “ << sizeof(c);
Options: Pick one correct answer from below