what is a far pointer
Answers were Sorted based on User's Feedback
Answer / raji
suppose int means take 2byte then far int means take 4bytes
| Is This Answer Correct ? | 7 Yes | 12 No |
Answer / 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 |
what about "char *(*(*a[])())();"
What is the difference between array and pointer?
What are the 5 data types?
Is c compiled or interpreted?
write a programme that inputs a number by user and gives its multiplication table.
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
What is keyword with example?
Write a C program to convert an integer into a binary string?
What is meant by inheritance?
how to set Nth bit of a variable?
What are the key features in c programming language?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }