what is a far pointer
Answer Posted / narender bhardwaj
a normal pointter can only point to the main memory
location, while the far pointer can have an address of any
location of ur memory, including seconday one
| Is This Answer Correct ? | 29 Yes | 39 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is switch in c?
what are non standard function in c
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
How can you increase the allowable number of simultaneously open files?
Explain union. What are its advantages?
Can you add pointers together? Why would you?
What is a char c?
What are directives in c?
What is calloc malloc realloc in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Describe the order of precedence with regards to operators in C.
Not all reserved words are written in lowercase. TRUE or FALSE?
What is wrong with this program statement? void = 10;