. *, ( ..) - ( ..) , , "" ( ..). . :
int *a = 1
:
a = b + *c
Please note that in the last example, we have a variable in front of *, but not directly in front of, there is a plus sign ( +) in the middle.
But if you have a variable (or etc.) right before *it is a binary operator, it "affects" two variables (or etc.).
a = b * *c
See, here I use both of them. I assign a value b times that c points to.
Hope this helps you better understand.
source
share