what is a far pointer
Answer Posted / narender bhardwaj
a normal pointter can only point to the main memory
location, while the far pointer can have an address of any
location of ur memory, including seconday one
| Is This Answer Correct ? | 29 Yes | 39 No |
Post New Answer View All Answers
How can this be legal c?
What is exit() function?
What is the difference between the = symbol and == symbol?
regarding pointers concept
What is an lvalue in c?
Write a code to generate a series where the next element is the sum of last k terms.
If fflush wont work, what can I use to flush input?
Explain what is the difference between #include and #include 'file' ?
What is the use of pointers in C?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What are pointers in C? Give an example where to illustrate their significance.
Difference between macros and inline functions? Can a function be forced as inline?
What are different types of variables in c?
Explain the concept and use of type void.