<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>atani</author_name>
  <author_url>https://blog.hatena.ne.jp/atani/</author_url>
  <blog_title>tec memo</blog_title>
  <blog_url>https://atani.hateblo.jp/</blog_url>
  <categories>
  </categories>
  <description>ポインタ型 アドレスを記憶する変数の型。 他の型と合体して型を生成する。 ポインタ値 変数のアドレスの値のこと。 ポインタ変数の宣言 int *p; int* p; どちらも同じ。 int* p1, p2; と書いた場合、p2はint型になる。そのため、変数の前に*をつけて明示してあげたほうが良さそう。 アドレスを代入 #include &lt;stdio.h&gt; int main(void) { int *p, i; p = &amp;i; printf(&quot;p = %p\n&quot;, p); printf(&quot;&amp;i = %p\n&quot;, &amp;i); return 0; } 上記をコンパイルして実行すると以下の通りとなる。…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fatani.hateblo.jp%2Fentry%2F2016%2F04%2F10%2F170954&quot; title=&quot;C言語: ポインタ、事はじめ - tec memo&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>2016-04-10 17:09:54</published>
  <title>C言語: ポインタ、事はじめ</title>
  <type>rich</type>
  <url>https://atani.hateblo.jp/entry/2016/04/10/170954</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
