タグ

pointerとtoreadに関するyassのブックマーク (2)

  • Everything you need to know about pointers in C

    Version 1.3.1. Copyright 2005–2023 Peter Hosey. This work is licensed under a Creative Commons Attribution 2.5 License. This document comes with a companion example program, available as one file or as multiple files (zipped). Style used in this document This is regular text. This is a variable, some code, and some sample output. This is a line of code. This is a comment. This is also a comment. T

  • ポインタの裏話

    ポインタの裏話 岡﨑 直観 okazaki at ecei.tohoku.ac.jp http://www.chokkan.org/ @chokkanorg ポインタの裏話 プログラミング演習A 1 このような説明を 覚えていますか? 知らなくても全く問題ありません ポインタの裏話 プログラミング演習A 2 int x = 0; &xは変数xの「アドレス」 「番地」「住所」を返す 変数x 0 &x メモリ空間, 記憶空間 変数xのアド レス(住所) ポインタの裏話 プログラミング演習A 3 ____ / \ 何言ってたんだこいつ? / ⌒ ⌒\ 番地 アドレス ぬるぽ / (●) (●) \ \ / | 、“ ゙)(__人__)" ) __________ \ 。` ⌒゚:j´ ,/ j゙~~| | | | __/ \ |__| | | | || / , \n||

  • 1