void main()
{
char far *farther,*farthest;
printf("%d..%d",sizeof(farther),sizeof(farthest));
}
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / jaroosh
Some explanation first:
far pointers are outdated concepts from C, and are actually
compiler extentions, so you might get compiler errors trying
to use far pointers on some compilers.
In the program above,
farther's type - FAR pointer to char
farthest's type - near pointer to char
now, the difference in size of those stems from the fact
that far pointers consist of the segment and offset
together, while near pointers just have the offset.
Near pointers thus have size of 2 (just the offset), while
far pointers - size of 4 bytes.
| Is This Answer Correct ? | 64 Yes | 4 No |
Answer / basha
syntax error before '*' token
error: `farther' undeclared (first use in this function)
error: `farthest' undeclared (first use in this function)
I am getting these types of errors how u get 4 and 2 i
didn't understood
| Is This Answer Correct ? | 15 Yes | 30 No |
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Write a program to find given number is even or odd without using any control statement.
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
A stack can be implemented only using array?if not what is used?
What is the most efficient way to count the number of bits which are set in an integer?
Is c object oriented?
how to write a data 10 in address location 0x2000
Is fortran faster than c?
How do you redirect a standard stream?
How to print %d in output
Is c dynamically typed?
What is operator promotion?