What is a far pointer?What is the utility?
Answers were Sorted based on User's Feedback
Answer / chaitanya
pointers are two types.near and far.
if code we are writing is so large and there is necessity
to refer an address in other memory segment we have to use
far pointer.within in the range of 64Kb we can use new
pointer
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / mani
far pointers are of 32 bits.so within the range of 64Kb we
can use this pointer
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / bharat chandra
pointer is dynamic memory allocaton and memory space are
reduce.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rani
utility is an software tool like as we have make utilities in gcc
| Is This Answer Correct ? | 0 Yes | 0 No |
How to write the code of the program to swap two numbers with in one statement?
What is variables in c?
What is f'n in math?
how can i sort numbers from ascending order and descending order using turbo c..
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
What is the role of this pointer?
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Explain what are header files and explain what are its uses in c programming?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Explain what is output redirection?
What is the use of the sizeof operator?