what is a far pointer
Answer Posted / gopal
Far Pointer: A far pointer is that which will point anywhere
in the X MB across segments by containing segment+offset .
far pointers are the normalized pointers of four bytes which
are used to access the main memory of the computer ?it can
access both the data segment and code segment thus by
modifying the offset u can modify refer two different
addresses but refer to the same memory .
Far pointers are not Normalized.
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
How do you list a file’s date and time?
What is #pragma statements?
Why c is called procedure oriented language?
What is C language ?
List the difference between a "copy constructor" and a "assignment operator"?
how can I convert a string to a number?
Are bit fields portable?
What should malloc() do?
Why is not a pointer null after calling free?
State the difference between realloc and free.
Can you return null in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Can we access array using pointer in c language?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
When is the “void” keyword used in a function?