Note: C is Microsoft C Compiler.

I'm having trouble with the following code.

*Roomsize = (int*)calloc(sizeof(int),sched->numberOfRooms);

roomIndex = 0;
for(roomIndex=0; roomIndex< sched->numberOfRooms; roomIndex++)
{
    fscanf(inputFile,"%d",&lineInput);
    numberOfLinesRead++;
    *Roomsize[roomIndex] = lineInput;
}

This is in a separate C file. I wasn't having this problem until I decided to separate things out to make them more maintainable and I think I'm just getting a little mixed up with pointers.

The calloc works fine.

On the first iteration of the loop, element zero of roomIndex gets set properly.

However the second element (element 1) in the loop, always results in an access violation at runtime.

I run into this problem later in my code too with a 2d array, but I'm figuring it's the exact same problem and this is just the most simple case.

Can anyone help me understand why it seems impossible to set anything but the first element here?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

*Roomsize[roomIndex] is the same as *(Roomsize[roomIndex]). You want to say (*Roomsize)[roomIndex].

(I'm assuming that Roomsize is actually a int**. If that's not correct, then the problem may lie elsewhere.)

link|improve this answer
That worked! What do the brackets actually signify? – user28871 Jan 31 '11 at 19:02
And your assumption is correct. – user28871 Jan 31 '11 at 19:02
The brackets are the normal array access operator. According to the order of operations, array access occurs before pointer dereference. – Daniel Gallagher Jan 31 '11 at 19:07
Ah I think I get it now.. thanks for the help Daniel. – user28871 Jan 31 '11 at 19:10
feedback

Your first line, when you allocate Roomsize, looks wrong. If I am correct in assuming Roomsize is an int *, you should just say Roomsize = (int *) calloc... As @Daniel posted, your assignment should also be changed to get rid of the asterisk.

link|improve this answer
No it's fine the way it is I think. (Otherwise I'm assuming it wouldn't get past the compiler). Daniel is correct in his assumption that Roomsize is an int**. It's declared outside the file as an int* and passed in via pointer as I'm going to be writing it.. therefore I'm dereferencing it first. Thanks for the help though. – user28871 Jan 31 '11 at 19:04
feedback

Your Answer

 
or
required, but never shown

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