MCQ Practice
In this program the two printed memory locations has the difference of . . . . . . . . bytes. #include #include int main() { int *ptr; ptr = (int*)malloc(sizeof(int)*2); printf("%pn",ptr); printf("%pn",ptr+1); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B