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 |
What is string length in c?
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
What is meant by keywords in c?
What is a const pointer, and how does it differ from a pointer to a const?
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 :(
what is a pointer
4 Answers Bank Of America, TCS,
What is the benefit of using #define to declare a constant?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
wtite a program that will multiply two integers in recursion function
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.
When a c file is executed there are many files that are automatically opened what are they files?
What is the difference between new and malloc functions?