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
What are the advantages of using Unions?
Why isn't it being handled properly?
How can I get random integers in a certain range?
What are the disadvantages of c language?
Define and explain about ! Operator?
What are the parts of c program?
What is wrong with this program statement? void = 10;
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What does stand for?
What are run-time errors?
Describe wild pointers in c?
What is typedef example?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Are negative numbers true in c?
How can I split up a string into whitespace-separated fields?