what is a far pointer

Answer Posted / rachna

far pointer is a pointer that include segment
selector.which is used to select a segment that is outside
the current segment.

Is This Answer Correct ?    11 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of variables in c?

570


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1947


Why C language is a procedural language?

608


Why & is used in scanf in c?

611


What are the types of data types and explain?

659






Why is c so popular?

639


Why c is a procedural language?

569


What is the difference between array and structure in c?

561


Explain what is output redirection?

656


Differentiate call by value and call by reference?

556


Who is the main contributor in designing the c language after dennis ritchie?

537


What is the difference between the expression “++a” and “a++”?

642


can anyone suggest some site name..where i can get some good data structure puzzles???

1637


What is character set?

675


Is fortran faster than c?

568