🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Pointer question

Started by
0 comments, last by Legro 22 years, 8 months ago
Is there a difference between: int *num; int * num; int* num; ? If so, could anyone explain?
Advertisement
No difference at all. It might be best to use the int *num style though because it reminds you that the ''*'' goes with the ''num'' and not the ''int''.
For instance,
int* num, foo, joe;
might be a little deceptive because the only pointer is "num." The other two are regular integers.

This topic is closed to new replies.

Advertisement