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 |
How can I do peek and poke in c?
What is scanf () in c?
Write a simple code fragment that will check if a number is positive or negative.
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
ABCDCBA ABC CBA AB BA A A
write a program which will count occurance of a day between two dates.
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is the use of parallelize in spark?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
inline function is there in c language?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;