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 is ur strangth & weekness
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How do you define CONSTANT in C?
What is register variable in c language?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is page thrashing?
How can I recover the file name given an open stream or file descriptor?
What type is sizeof?
What is static memory allocation? Explain
What is the use of a ‘ ’ character?
Explain how do you convert strings to numbers in c?
Write a program in c to replace any vowel in a string with z?
What is malloc() function?
Can a function argument have default value?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.