- Memory Allocation - General Questions
- Memory Allocation - Find Output of Program
- Memory Allocation - Point Out Errors
- Memory Allocation - Point Out Correct Statements
- Memory Allocation - True / False Questions
- Memory Allocation - Yes / No Questions


Memory Allocation - Programming
Q1: Assume integer is 2 bytes wide. What will be the output of the following code?
#include<stdio.h>
#include<stdlib.h>
#define MAXROW 3
#define MAXCOL 4
int main()
{
int (*p)[MAXCOL];
p = (int (*) [MAXCOL])malloc(MAXROW *sizeof(*p));
printf('%d, %d\n', sizeof(p), sizeof(*p));
return 0;
}
A 2, 8
B 4, 16
C 8, 24
D 16, 32
ANS:A - 2, 8 No answer description is available. Let's discuss. |


For help Students Orientation
Mcqs Questions
One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.