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 |
Why do we use header files in c?
What's the best way of making my program efficient?
What is static and volatile in c?
What is the difference between malloc calloc and realloc in c?
What is the difference between ++a and a++?
Disadvantages of C language.
In which category does main function belong??
What is the difference between volatile and const volatile?
#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?
How do you determine whether to use a stream function or a low-level function?
Explain about the constants which help in debugging?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?