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 difference b/w extern & volatile variable??

6 Answers   Teleca,


What is the relation between # and include<stdio.h>

5 Answers   HCL,


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


what is the associativity of bitwise OR operator?

1 Answers  


what is the difference between <stdio.h> and "stdio.h"

14 Answers   Invendis, Kanbay, Mastek, MathWorks,






What is the most efficient way to count the number of bits which are set in an integer?

0 Answers  


What is array in C

0 Answers  


how to find sum of 5 digits in C?

4 Answers  


send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?

0 Answers   TCS,


What are the scope of static variables?

0 Answers  


what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


How can you allocate arrays or structures bigger than 64K?

0 Answers  


Categories