vote up 1 vote down star

I am having trouble getting this to work.

I have variables initiated in main which I want to pass onto other functions and have changed. I know the only way this can be done is with pointers or to declare the variables outside the main function. I would prefer to use pointers

How is it done?

eg

int main(){
    int variable1 = 5;
    add(&variable1, 6);
    printf("%d", variable1);

    return 0;
}

int add(int *variable1, int addValue){
    variable1 += addValue;

    return 0;
}

I want to print 11 but I don't know how these pointers work through other functions

flag

52% accept rate
in my main program, I was trying to use a pointer to increase it's reference by 1 using ++. Aparently that's not legal?? *value++; has to be *value = *value + 1; – Supernovah Oct 13 at 21:59
Use: (*value)++ – NVRAM Oct 13 at 22:21
.. or ++*value – NVRAM Oct 13 at 22:22

3 Answers

vote up 6 vote down check

You simply need to dereference your pointer:

void add(int *variable1, int addValue)
{
    *variable1 += addValue;
}

In your function call, you pass in "&variable1" which means 'a pointer to this variable'. Essentially, it passes in the exact memory location of variable1 in your main function. When you want to change that, you need to dereference by putting an asterix "*variable1 += 6". The dereference says 'now modify the int stored at this pointer'.

When you use the asterix in your function def, it means that 'this will be a pointer to an int'. The asterix is used to mean two different things. Hope this helps!

Oh, and also add the explicit type to the function call:

void add(int *variable1, int addValue)
link|flag
it is still printing 5 ?? – Supernovah Oct 13 at 21:53
aparently, add can't be void ?? any idea about that – Supernovah Oct 13 at 21:56
vote up 4 vote down

You simply forgot to dereference the pointer:

*variable1 += addValue;

And all the function parameters must have an explicit type.

void add(int *variable1, int addValue)
link|flag
that was just a typo (part 2) thx – Supernovah Oct 13 at 21:48
vote up 1 vote down

...you just need *variable1 = addvalue;, it was almost right...as is you just added 1 to the pointer, which vanished as soon as add() returned...

link|flag

Your Answer

Get an OpenID
or

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