标签: c pointers
我正在使用C.
假设我有一个指向* myptr
int *myptr;
之间的区别是什么:
*myptr++
和...
*(myptr++)
由于 丹
答案 0 :(得分:15)
由于++的优先级高于*,因此两者之间存在无差异。
++
*