what is a far pointer
Answer Posted / sujith
I am not very sure what Bhardwaj is trying to answer with a
secondary memory. If he point out something to your hard
disk or something like that, i think i cannot agree with that.
Any pointer by default is a near pointer. another set of
pointers are far and huge, and they differ only in terms how
they store the value of the normalised pointer value.
A far/huge pointer is used to access a location which is
outside your current segment.
| Is This Answer Correct ? | 53 Yes | 10 No |
Post New Answer View All Answers
What is getche() function?
How can you call a function, given its name as a string?
Is it cc or c in a letter?
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is difference between structure and union in c programming?
What is a double c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What does a pointer variable always consist of?
What is void c?
Write a program that accept anumber in words
Why c is called top down?
What are the advantages of c language?
What is include directive in c?
Do you know what are bitwise shift operators in c programming?