C
Programming and Technical
General Ability
General Knowledge
output?
void main()
{
char far *farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}
A. 4..2
Explanation: The second pointer is of char type and not a far pointer
Read Solution (Total 2)
-
- void main()
{
char far ,*farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}
output=8..8 - 6 years agoHelpfull: Yes(0) No(0)
- size of char pointer is 8 bytes.
so 8..8 is the answer - 6 years agoHelpfull: Yes(0) No(0)
C Other Question