What is a far pointer?What is the utility?

Answers were Sorted based on User's Feedback



What is a far pointer?What is the utility?..

Answer / chaitanya

pointers are two types.near and far.
if code we are writing is so large and there is necessity
to refer an address in other memory segment we have to use
far pointer.within in the range of 64Kb we can use new
pointer

Is This Answer Correct ?    9 Yes 1 No

What is a far pointer?What is the utility?..

Answer / mani

far pointers are of 32 bits.so within the range of 64Kb we
can use this pointer

Is This Answer Correct ?    2 Yes 1 No

What is a far pointer?What is the utility?..

Answer / bharat chandra

pointer is dynamic memory allocaton and memory space are
reduce.

Is This Answer Correct ?    0 Yes 0 No

What is a far pointer?What is the utility?..

Answer / rani

utility is an software tool like as we have make utilities in gcc

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is the difference between malloc() and calloc() function?

1 Answers  


write a program in c to print **** * * * * ****

1 Answers   TCS,


What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }

3 Answers  


write a program to swap two numbers without using temporary variable?

3 Answers  


What is the advantage of an array over individual variables?

0 Answers  






What is difference between union All statement and Union?

0 Answers  


What is the difference between CV and Resume ?

2 Answers  


How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.

0 Answers  


Give me the code of in-order recursive and non-recursive.

0 Answers   DELL,


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

0 Answers   Amdocs, Apps Associates,


c program to manipulate x=1+3+5+...+n using recursion

2 Answers   Wipro,


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


Categories