473,508 Members | 2,227 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Pointer to Pointer

16 New Member
Hi guyz,
could you please tell me what's the use of pointer to a pointer? specially in function parameters.
Regards,
Feb 25 '07 #1
7 2699
Ganon11
3,652 Recognized Expert Specialist
A pointer to a pointer is sometimes used to make dynamically-allocated 2D arrays. For instance,

Expand|Select|Wrap|Line Numbers
  1. int **array;
  2. array = new int*[10];
  3. for (int i = 0; i < 10; i++) {
  4.    array[i] = new int[10];
  5. }
This code will make a 10x10 array of integers.

Functions that accept double pointers (what I call them - not an official term) can use them as 2d arrays in the above manner.

I'm not sure if there's any other widespread usage of double pointers...
Feb 26 '07 #2
jeff_rowa
16 New Member
A pointer to a pointer is sometimes used to make dynamically-allocated 2D arrays. For instance,

Expand|Select|Wrap|Line Numbers
  1. int **array;
  2. array = new int*[10];
  3. for (int i = 0; i < 10; i++) {
  4.    array[i] = new int[10];
  5. }
This code will make a 10x10 array of integers.

Functions that accept double pointers (what I call them - not an official term) can use them as 2d arrays in the above manner.

I'm not sure if there's any other widespread usage of double pointers...

tnx for the reply
Feb 26 '07 #3
Banfa
9,065 Recognized Expert Moderator Expert
I'm not sure if there's any other widespread usage of double pointers...
Loads :D

You can use a pointer to pointer in a function call if you want to return a pointer via a parameter, i.e.

Expand|Select|Wrap|Line Numbers
  1. char *pp;
  2.  
  3. Function(&pp);
  4.  
  5.  
  6. void Function(char **ppp)
  7. {
  8.     (*ppp) = malloc(20);
  9.  
  10.     strcpy(*ppp, "Hellow World");
  11. }
  12.  
You need a pointer to a pointer to pass back the value of a pointer (in the same way you need a pointer to an int to pass back the value of an int), if you just had a pointer then the value of pp would not be changed.

Pointers to pointers can be useful in linked list manipulation, sometimes it is handy to have a pointer to your next pointer.


Just allocating memory is a rather trivial and boring use of a pointer to pointer that doesn't really exploit it's full potential.
Feb 26 '07 #4
DeMan
1,806 Top Contributor
Furthermore (and forgive me if i'm repeating what you saud Banfa) a double pointer allows the called function to worry about memory......

Consider two functions:

Expand|Select|Wrap|Line Numbers
  1.  
  2. int myMethod(char *inString, int size);
  3. int myOtherMethod(char **inString, int *size);
  4.  
myMethod can manipulate the data starting at pointer inString, but has to assume that memory has been allocated (generally you would expect that this is why size has been passed also).
Expand|Select|Wrap|Line Numbers
  1. int myMethod(char *inString, int size)
  2. {
  3.   char* tempString = inString;
  4.   for(int i=0; i<size; i++)
  5.   {
  6.     *tempString = 'A';
  7.     tempString ++;
  8.   }
  9.   return SUCCESS;  //where SUCCESS is defined somehwer.....
  10.  
myOtherMethod can allocate memory to a pointer of whatever size it wants and the pass the buffer back (and you'll often find that size is a pointer also as above, so that we can update that. The idea is that we can either default to a particular value if size is not pased in OR the caller passes the size of data he expects, and we return how much he gets (fairly simple check to see that data is reasonable)

Expand|Select|Wrap|Line Numbers
  1.  
  2. int myOtherMethod(char **inString, int *size)
  3. {
  4.   char *tempBuffer = NULL;
  5.   if(*size > 0)  //Notice value AT size
  6.   {
  7.     tempBuffer = (char *)malloc(*size);
  8.   }
  9.   else
  10.   {
  11.     tempBuffer = (char *)malloc(DEFAULT_SIZE);
  12.     *size = DEFAULT_SIZE;
  13.   }
  14.   //Do whatever we need to do with data
  15.  
  16.   //point callers pointer to our buffer
  17.   *inString = tempBuffer;
  18. }
  19.  
NOTICE: we say *inString = tempBuffer ("the value AT inString = tempBuffer", since tempBuffer is a ptr and inString is a ptr to a ptr we update the (ptr) value AT ptr, ptr )



}
Feb 26 '07 #5
RedSon
5,000 Recognized Expert Expert
However, be warned that the procedure that DeMan is talking about goes against good coding practices. When you write a routine it should focus on changing one thing, and returning a value. Routines that side effect multiple arguments are harder to debug and more difficult to follow when troubleshooting. Routines that operate like this are usually indicative of a poor design.
Feb 26 '07 #6
DeMan
1,806 Top Contributor
I'm not sure that's necessarily true,

As an example....
If you want to read from storage, there is little point being passed a buffer of some arbitrary length, when you don't know how long the data will be. If the methos is creating a buffer, it should also return the length of said buffer so that the caller knows how much data they're dealing with.

Some people would suggest using another method and calling that "size" to acheive this, so that you first ask how big the data will be, then allocate a buffer that size, and pass it on to the read function. This idea has merit because the person allocating the buffer will be the person freeing it, however, by returning buffer and length together, we guarantee not (necessarily) that we return the length of data that should have been read, but the length of the ACTUAL buffer we created....that is, the caller does not need to make assume that we used their buffer as they intended.

Of course alternatives such as creating a structure that stores the size and a pointer to the buffer may be a different solution.......
Feb 26 '07 #7
RedSon
5,000 Recognized Expert Expert
...Of course alternatives such as creating a structure that stores the size and a pointer to the buffer may be a different solution.......
Yes this is an important point. It highlights the difference between programming in your language of choice and programming into you language of choice.
Feb 26 '07 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

4
2118
by: Carsten Spieß | last post by:
Hello all, i have a problem with a template constructor I reduced my code to the following (compiled with gcc 2.7.2) to show my problem: // a base class class Base{}; // two derived...
110
9812
by: Mr A | last post by:
Hi! I've been thinking about passing parameteras using references instead of pointers in order to emphasize that the parameter must be an object. Exemple: void func(Objec& object); //object...
3
2333
by: Bruno van Dooren | last post by:
Hi All, i have some (3) different weird pointer problems that have me stumped. i suspect that the compiler behavior is correct because gcc shows the same results. ...
35
2856
by: tuko | last post by:
Hello kind people. Can someone explain please the following code? /* Create Storage Space For The Texture */ AUX_RGBImageRec *TextureImage; /* Line 1*/ /* Set The Pointer To NULL...
16
2266
by: junky_fellow | last post by:
According to Section A6.6 Pointers and Integers (k & R) " A pointer to one type may be converted to a pointer to another type. The resulting pointer may cause addressing exceptions if the...
204
12891
by: Alexei A. Frounze | last post by:
Hi all, I have a question regarding the gcc behavior (gcc version 3.3.4). On the following test program it emits a warning: #include <stdio.h> int aInt2 = {0,1,2,4,9,16}; int aInt3 =...
16
2484
by: aegis | last post by:
Given the following: int a = 10; int *p; void *p1; unsigned char *p2; p = &a;
23
7769
by: bluejack | last post by:
Ahoy... before I go off scouring particular platforms for specialized answers, I thought I would see if there is a portable C answer to this question: I want a function pointer that, when...
69
5492
by: fieldfallow | last post by:
Hello all, Before stating my question, I should mention that I'm fairly new to C. Now, I attempted a small demo that prints out the values of C's numeric types, both uninitialised and after...
8
2215
by: Martin Jørgensen | last post by:
Hi, "C primer plus" p.382: Suppose we have this declaration: int (*pa); int ar1; int ar2; int **p2;
0
7231
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7132
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
5640
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5059
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4720
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3211
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3196
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1568
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
773
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.