What is huge pointer in c?



What is huge pointer in c?..

Answer / Ram Kumar Singh

The term 'huge pointer' is not standard in C. If you meant 'far pointer', it was an outdated type of pointer used with the far memory model in 16-bit versions of MS-DOS and Windows.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Why do we use header files in c?

1 Answers  


What's the best way of making my program efficient?

1 Answers   Celstream,


What is static and volatile in c?

1 Answers  


What is the difference between malloc calloc and realloc in c?

1 Answers  


What is the difference between ++a and a++?

1 Answers  


Disadvantages of C language.

1 Answers   Impetus,


In which category does main function belong??

5 Answers  


What is the difference between volatile and const volatile?

1 Answers  


#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,


How do you determine whether to use a stream function or a low-level function?

1 Answers  


Explain about the constants which help in debugging?

1 Answers  


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

1 Answers  


Categories