In am doing some experiment in C pointers and trying to understand its behaviour. The following are my assumptions for the below codes. Correct me if I am wrong. I have the foll
Please check the link below: Difference between ++*argv, *argv++, *(argv++) and *(++argv)
You need to know about operator precedence in-order to understand what is going on here.
++ operator has higher precedence over *
++
*