what is a far pointer
Answer Posted / jagdeep
Far pointer is 4 byte poinetr and near pointer is 2 byte
pointer.Far pointer is used to point any specified memory
location but near pointer is used to specify only main
memory location.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What is the data segment that is followed by c?
Can variables be declared anywhere in c?
What do you mean by keywords in c?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are runtime error?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
what is the basis for selection of arrays or pointers as data structure in a program
How can I pad a string to a known length?
What are reserved words with a programming language?
What is the difference between arrays and pointers?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is identifiers in c with examples?
What is malloc and calloc?