what is a far pointer
Answer Posted / praveen kondapaturi
A far/huge pointer is used to access a location which is
outside your current segment.
It includes a segment selector, making it possible to point
to addresses outside of the current segment.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is dynamic variable in c?
How do you print an address?
What is multidimensional arrays
Why isnt any of this standardized in c?
Explain how can I read and write comma-delimited text?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Here is a neat trick for checking whether two strings are equal
Write a program to print all permutations of a given string.
What is union and structure in c?
Why do we use int main instead of void main in c?
What is register variable in c language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What is printf () in c?
Why double pointer is used in c?
What is unsigned int in c?