Update appNew update is available. Click here to update.
Report an issue
What is the output

Assume integer takes 4 bytes and integer pointer 8 bytes.

int a[5];
int *c;
cout << sizeof(a) << “ “ << sizeof(c);
Options: