what is a far pointer
Answer Posted / mrs.ahmer
A far pointer is a pointer which includes segment number.
In a segmented architecture computer, far pointers are used
to address the entire 1mb memory which is available under
Dos.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the difference between a string and an array?
Is int a keyword in c?
What is a spanning Tree?
What are different types of variables in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain what header files do I need in order to define the standard library functions I use?
What are register variables in c?
Explain about the constants which help in debugging?
Write a program to know whether the input number is an armstrong number.
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Do you know the difference between exit() and _exit() function in c?
Write a program to print “hello world” without using semicolon?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Can we assign integer value to char in c?
What is a global variable in c?