+ 1
Is int* a and int *a is the same thing ?????
pointers
3 Answers
+ 5
Yes in a sense, but there are differences.
If you do this:
int* a, b, c;
a is pointer, b and c are int
if you do this:
int *a, *b, *c
a, b, and c are all pointers.
+ 2
Ipang thanks
+ 1
Samratââ You're welcome, happy learning : )