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 the purpose of ftell?
What is meant by initialization and how we initialize a variable?
What are pointers? What are different types of pointers?
Write a program to reverse a given number in c language?
write a program to copy the string using switch case?
Which programming language is best for getting job 2020?
What is declaration and definition in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
program to convert a integer to string in c language'
Write a program to print numbers from 1 to 100 without using loop in c?
What is d'n in c?
What is action and transformation in spark?
Explain how do you convert strings to numbers in c?
What is enumerated data type in c?
Is c easier than java?