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
program for reversing a selected line word by word when multiple lines are given without using strrev
Is there a way to switch on strings?
What are runtime error?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain how can I read and write comma-delimited text?
Who developed c language and when?
Why is void main used?
Is null valid for pointers to functions?
What is the difference between malloc calloc and realloc in c?
Is null always defined as 0(zero)?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the use of sizeof () in c?
What is optimization in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How old is c programming language?