C
Programming and Technical
Q. What is far pointer?
A. The pointer which can point or access whole the residence memory of RAM i.e. which can access all 16 segments is known as far pointer
Read Solution (Total 1)
-
- Size of far pointer is 4 byte or 32 bit.
Examples:
#include
int main(){
int x=10;
int far *ptr;
ptr=&x;
printf("%d",sizeof ptr);
return 0;
}
Output: 4 - 10 years agoHelpfull: Yes(0) No(0)
C Other Question