void main()
{
char far *farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}
Answer Posted / surenda pal singh chouhan
4..2
Explanation:
the second pointer is of char type and not a
far pointer
| Is This Answer Correct ? | 94 Yes | 11 No |
Post New Answer View All Answers
Is void a keyword in c?
What is ctrl c called?
What does 3 mean in texting?
Explain can you assign a different address to an array tag?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Why should I use standard library functions instead of writing my own?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Differentiate between null and void pointers.
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Explain goto?
please send me the code for multiplying sparse matrix using c
Explain what is a 'locale'?
What is c standard library?