C Language MCQ - English
How many bytes are occupied by near, far and huge pointers (DOS)?
near=2 far=4 huge=4
near=4 far=8 huge=8
near=2 far=4 huge=8
near=4 far=4 huge=8
Answer : A
Sponsored Ad
Feel free to find and hire your online essay writer to help you with papers. AdvancedWriters will not let you down.
View More Related Question
1) Can you combine the following two statements into one? char *p;
p = (char*) malloc(100);
char p = *malloc(100);
char *p = (char) malloc(100);
char *p = (char*)malloc(100);
char *p = (char *)(malloc*)(100);
View Answer
2) What is (void*)0?
3) What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
4) Which of the following does not initialize ptr to null (assuming variable declaration of a as int a=0;)?
5) Which is an indirection operator among the following?