What is the difference between far and near ?



What is the difference between far and near ?..

Answer / Balram Singh

In older versions of C, far and near were segmented memory qualifiers that allowed you to specify where variables or functions should be stored in memory. However, modern compilers do not support these qualifiers because they have been replaced by flat model which uses a single contiguous address space.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is string length in c?

1 Answers  


A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

1 Answers  


What is meant by keywords in c?

1 Answers  


What is a const pointer, and how does it differ from a pointer to a const?

2 Answers  


please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(

1 Answers  


what is a pointer

4 Answers   Bank Of America, TCS,


What is the benefit of using #define to declare a constant?

1 Answers  


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1 Answers  


wtite a program that will multiply two integers in recursion function

4 Answers   TCS,


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

1 Answers   Subex,


When a c file is executed there are many files that are automatically opened what are they files?

1 Answers  


What is the difference between new and malloc functions?

1 Answers   InterGraph,


Categories