what is a far pointer
Answer Posted / sankar
in OS the memory is divided into segments.
so by using near pointer we can point with in the same segment.
where as by using far pointer we can point any segment in
the memory.
Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is meant by high-order and low-order bytes?
What is null in c?
Is a house a mass structure?
Distinguish between actual and formal arguments.
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What does c in a circle mean?
What is string in c language?
Implement bit Array in C.
Explain what will the preprocessor do for a program?
How do c compilers work?
What is the return type of sizeof?
What is c programing language?
Is main a keyword in c?
Who developed c language and when?
What is header file in c?