Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はCを使用しています。
*myptr という整数へのポインターがあるとします。
int *myptr;
その場合、次の違いは何でしょう。
*myptr++
と...
*(myptr++)
ありがとうダン
++は よりも優先順位が高いため、両者に違い*はありません。
++
*