Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is getche() function?

989


How can you call a function, given its name as a string?

1102


Is it cc or c in a letter?

960


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;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

3130


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2277


What is difference between structure and union in c programming?

1021


What is a double c?

943


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?

1049


What does a pointer variable always consist of?

1045


What is void c?

1015


Write a program that accept anumber in words

1712


Why c is called top down?

1095


What are the advantages of c language?

1045


What is include directive in c?

1096


Do you know what are bitwise shift operators in c programming?

1062