C Programming - Complicated Declarations - Discussion

Discussion Forum : Complicated Declarations - Find Output of Program (Q.No. 4)
4.
What will be the output of the program (in Turbo C under DOS)?
#include<stdio.h>

int main()
{
    char huge *near *far *ptr1;
    char near *far *huge *ptr2;
    char far *huge *near *ptr3;
    printf("%d, %d, %d\n", sizeof(ptr1), sizeof(ptr2), sizeof(ptr3));
    return 0;
}
4, 4, 8
2, 4, 4
4, 4, 2
2, 4, 8
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
32 comments Page 3 of 4.

Sarfraj said:   1 decade ago
I m not able to understand that, please give more explanation.

Gitpr said:   7 years ago
Why can't I find huge near or far on cppref? Please explain.

Seshan said:   1 decade ago
I can't understand can you explain me with full reference.

Aparna said:   9 years ago
Unable to understand please someone explain in steps.

Ashwini said:   9 years ago
Can't understand it. Explain it more detail.

Mehul said:   1 decade ago
I don't understand. Please must be explain.

Manohr said:   6 years ago
Can anyone explain in detail to me?

Arusha said:   9 years ago
Can't understand it. Explain.

N n said:   1 decade ago
The code has syntax errors.

Deepak said:   2 decades ago
Please explain this to me.


Post your comments here:

Your comments will be displayed after verification.