<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>madotubo</author_name>
  <author_url>https://blog.hatena.ne.jp/madotubo/</author_url>
  <blog_title>言語解明</blog_title>
  <blog_url>https://madotubo.hatenadiary.org/</blog_url>
  <categories>
    <anon>C</anon>
  </categories>
  <description>ポインタを使うことにより、ポインタの指し示す変数を遠隔操作することができる。遠隔操作という表現を使ったが、この表現が一番しっくりくるだけで、深い意味はない。ポインタ変数pAに変数aのアドレスをいれ、*pAの値を変更すると、変数aの値も変更される。 #include&lt;stdio.h&gt; int main(){ int a = 5; int *pA; pA = &amp;a; printf(&quot;ポインタ変数pAの値は%d、変数aの値は%d\n&quot;,*pA,a); *pA = 50; printf(&quot;ポインタ変数pAの値は%d、変数aの値は%d\n&quot;,*pA,a); return 0; } 出力結果 ポインタ変数…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fmadotubo.hatenadiary.org%2Fentry%2F20081202%2F1228226566&quot; title=&quot;ポインタの基本2 - 言語解明&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2008-12-02 23:02:46</published>
  <title>ポインタの基本2</title>
  <type>rich</type>
  <url>https://madotubo.hatenadiary.org/entry/20081202/1228226566</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
