W3Schools Tryit Editor
[
フレーム
]
Run ❯
Get your
own
website
Go to Spaces
Ctrl+Alt+P
#include
int main() { int myNumbers[3] = {10, 20, 30}; int *p = myNumbers; // myNumbers[0] printf("%d\n", *p); // 10 p++; // move to myNumbers[1] printf("%d\n", *p); // 20 p--; // back to myNumbers[0] printf("%d\n", *p); // 10 p += 2; // jump to myNumbers[2] printf("%d\n", *p); // 30 return 0; }
10
20
10
30
AltStyle
によって変換されたページ
(->オリジナル)
/
アドレス:
モード:
デフォルト
音声ブラウザ
ルビ付き
配色反転
文字拡大
モバイル