Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I learning to use Pointers and what really is hard for me to understand is the Pointers subject. I have a few questions about an exercise code I wrote.

First, if I have the following function code:

//function prototype
void processCars(char *, char []);

int main(){
...
//actual callto the function
processCars(strModel[x], answer);
...
}

void processCars(char * string1, char string2[])
{
...
}

How would it be correct the define the arguments of this processCars function? The first one - char * - is a pointer to char, which is the start location of the string (or better an array of chars) ? The second is actually an array of chars directly.

Now, supposed I want to pass by reference a few array of strings and even array of structs. I managed to create the following code which works, but I still don't fully get what I'm doing.

typedef struct car {

    char make[10];
    char model[10];
    int year;
    int miles;

} aCar; // end type

// function prototype
void processCars( aCar * , char **, char **, int *, int *);

//aCar * - a pointer to struct of type car 
//char **, char ** 
// int * - a pointer to integer
//  Arrays passed as arguments are passed by reference.
// so this prototype works to
//void processCars( aCar * , char **, char **, int [], int []);


int main(){

    aCar myCars[3]; // an array of 3 cars

    char *strMakes[3]={"VW","Porsche","Audi"}; // array of 3 pointers?
    char *strModel[3]={"Golf GTI","Carrera","TT"};
    int intYears[3]={2009,2008,2010};
    int intMilage[3]={8889,24367,5982};

    // processCars(myCars, strMakes);
    processCars(myCars, strMakes, strModel, intYears, intMilage);

return 0;
} // end main

//  char ** strMakes is a pointer to array of pointers ?
void processCars( aCar * myCars, char ** strMakes, \
                  char ** strModel, int * intYears, \
                  int * intMilage ){
}

So, my qeustion is how to define this "char ** strMakes". What is it, why is it working for me?

I have also noticed, I can't change part of the string, because if I correct (or the references I read) strings are read only. So, like in python, I can use array indices to access the letter V:

printf("\n%c",strMakes[0][0]); 

But, unlike in python, I can't change it:

strMakes[0][0]="G" // will not work? or is there a way I could not think of?

So, thanks for reading through my long post and many question about pointers and c strings. Your answers are appreciated.

share|improve this question
2  
arrays are second-class C citizens. In most contexts they decay into a pointer to their first element. That happens in function calls (and prototypes). In your example (void processCars(char * string1, char string2[])) the string2 argument is really a pointer just like string1. – pmg Nov 25 '11 at 12:20
Read section 6 of the comp.lang.c FAQ. – Keith Thompson Nov 25 '11 at 21:03
@pmg : Terminology question: If arrays are second-class citizens and pointers are first-class citizens, shouldn't one be "promoted" when going from the former to the latter? I mean, arrays are "promoted into a pointer" instead of "decay into a pointer"? Or maybe pointers are not first-class elements? – sidyll Nov 25 '11 at 21:09
LOL @sidyll: an int is an int is an int; a pointer is a pointer is a pointer ... vs ... a char is a char is an int; a float is a double is a double; an array is an array is a pointer LOL – pmg Nov 25 '11 at 21:36
posting this here as it's a good tutorial: thegeekstuff.com/2011/12/c-arrays – Oz123 Dec 13 '11 at 9:45

2 Answers

up vote 4 down vote accepted

Within the function itself, both arguments will be pointers. The [] in the parameter list makes absolutely no difference, it's just syntactic sugar.

Although there is a distinct difference between an array and a pointer, a passed array to a function always decays to a pointer of the corresponding type. For example, an array of type char[3] would decay to char *, char *[3] would decay to char **.

char *strMakes[3] is an array of length 3 that holds pointers to strings stored somewhere else, probably in a read-only area of the process. An attempt to modify the strings themselves will result in undefined behaviour, most probably a protection fault.

If you want to be able to modify the strings, you could declare it as an array holding arrays, not pointers:

char strMakes[3][20] = {"VW", "Porsche", "Audi"};

This way the strings will be stored consecutively within the bounds of the outer array.

Another way is to still have an array of pointers, but the pointers should point to mutable memory:

/* these strings are mutable as long as you don't write past their end */
char str1[] = "VW";
char str2[] = "Porsche";
char str3[] = "Audi";
char *strMakes[3] = {str1, str2, str3};
share|improve this answer
Thanks for the answer. Is there a more correct way ? When I do char strMakes[3][20] = {"VW", "Porsche", "Audi"}; I am limited to a model name with up to 20 chars, while when I used my way, I didn't even specify the size of the strings. So, what is better? IMHO, your way is syntacticly more clear. – Oz123 Nov 25 '11 at 14:23
BTW - just thinking outloud - are we, people who program or want to program in C, belonging to an extinct cult? So, many few answers to a very important subject... – Oz123 Nov 25 '11 at 14:25
@Oz123: you have to specify the length of the inner arrays because the outer array needs to have all of its elements of the same size. It can be kind of wasteful in regard to memory usage, but aligning them on a certain boundary makes indexing possible in O(1). Another way is to still have an array of pointers, but the pointers should point to mutable memory. – Blagovest Buyukliev Nov 25 '11 at 14:31
Regarding the second question, yes, I do think C programmers are an endangered species nowadays. – Blagovest Buyukliev Nov 25 '11 at 14:38
so should i bother and learn C? being endangered, can mean either no employment, or it means higher salary ? – Oz123 Nov 25 '11 at 14:53
show 2 more comments

First of all, an array of type T is a special kind of pointer to T. For every array expression you have an equivalent pointer expression:

myarray[n] == *(myarray + n)

Note that adding a constant to a pointer increments the pointer with n * sizeof(T) bytes.

A difference occurs when defining an array versus a pointer. When you define an array, you have a pointer to the first element, but also you reserved space for the number of elements you indicated:

int myarray[5];

gives you a space of 20 bytes, assuming an int is 32 bit/4 bytes; you can also use myarray as a pointer to the first element:

myarray == &myarray[0]

If you define a pointer by itself, like

int *mypointer;

you have reserved no space at all. As long as you do not initialize the pointer, say with

mypointer = &myarray[2];

the pointer will not point anywhere specific.

And a final major difference: You cannot change the location where an array "pointer" points, in contrast to a 'normal' pointer. Some people I worked with were happy with the analogy

int myarray[7];

is helpfully "similar" to

int * const mypointer = malloc(7 * sizeof(int));

Yes, I know an array is not created by a dynamic call to malloc, but the use of mypointer is comparable at least to myarray.

Whether you have a pointer or an array, you may use the squared brackets to index into the values, as long as you are sure the boundaries are observed. mypointer[5] is just as well as *(myarray + 5) is.

And when defining or declaring function prototypes and the like, char *param is identical for almost all purposes to char param[]. Only your compiler or syntax checker may aid you in avoiding issues if and when you indicate a range, like char param[7], which you cannot do using the pointer notation.

Oh, and when you use a string to 'define' an array, say

char mystring[] = "ABC";

you effectively create two arrays, only one of which you can use. mystring will be an array of four chars (mind the closing zero), and before running main, this space is filled by copying the string "ABC" and the final zero into that space. The "ABC" is a constant string somewhere in memory. You cannot change that string, but since it is copied over into mystring, you may change it there.

share|improve this answer
1  
An array is not a special type of pointer. When you declare an array you don't have a pointer; when you use the name of an array in an expression other than as the operand to unary & or sizeof, then you have a pointer. – Charles Bailey Nov 25 '11 at 21:10
Yes, you are of course right. I just make the comparison because I have the experience that beginners learning pointers can begin to grasp the principles better. It's only later that you can begin to appreciate the differences. If my answer isn't helpful or even confusing in that way, I'd happily delete it. – Johan Bezem Nov 25 '11 at 21:33
You are right to point out that beginners often do get confused between arrays and pointers because of the similar ways in which you can use them. However, I think you are doing them a disservice by confusing the concepts and not making the distinction clear. The sooner a beginner learns and is comfortable with the two concepts the better, in my opinion. – Charles Bailey Nov 25 '11 at 21:51
OK, one answer at SO will not replace a book or a course. If my answer gets more downvotes, I'll remove it. Thanks for your comments anyway. – Johan Bezem Nov 25 '11 at 21:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.