<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Worth Living &#187; 構造体・共用体</title>
	<atom:link href="https://worthliv.com/category/cpp/cpp-struct/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/cpp/cpp-struct/feed" />
	<item>
		<title>構造体の配列</title>
		<link>https://worthliv.com/cpp_post_33.html</link>
		<comments>https://worthliv.com/cpp_post_33.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 05:19:15 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1348</guid>
		<description><![CDATA[構造体は配列にすることもできます。 以下は、プロフィールを表す構造体で、名前、年齢、身長、体重のメンバを持ちます。 スポンサーリンク 人数は最大5人で #define MAX_NUM 5 struct prof { ch [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_33.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_33.html" />
	</item>
		<item>
		<title>ビットフィールド・パックした構造体</title>
		<link>https://worthliv.com/cpp_post_32.html</link>
		<comments>https://worthliv.com/cpp_post_32.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 04:39:33 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1347</guid>
		<description><![CDATA[構造体・struct／構造体の宣言と初期化で例に出した構造体は、パックされていない構造体です。 パックとは、データをバイナリ形式に変換したものです。 スポンサーリンク たとえば、以下の構造体は、2バイト（int型のバイト [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_32.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_32.html" />
	</item>
		<item>
		<title>列挙（列挙型）・enum</title>
		<link>https://worthliv.com/cpp_enum.html</link>
		<comments>https://worthliv.com/cpp_enum.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 04:12:24 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1346</guid>
		<description><![CDATA[列挙型（enum）は、一定の範囲の値を保持するためのデータ型です。 値をタグで参照し、コンパイラは、タグに整数値を割り当てます。 スポンサーリンク typedef int day_of_week; const int S [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_enum.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_enum.html" />
	</item>
		<item>
		<title>typedef・変数型の定義</title>
		<link>https://worthliv.com/cpp_typedef.html</link>
		<comments>https://worthliv.com/cpp_typedef.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 03:31:43 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1345</guid>
		<description><![CDATA[C++では、typede文により、変数の型を独自に定義できます。 スポンサーリンク typede typedef ; 新しい型を定義するために、typedefを使用します。 typedef int width; // 幅 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_typedef.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_typedef.html" />
	</item>
		<item>
		<title>共用体・union／構造体との違い</title>
		<link>https://worthliv.com/cpp_post_31.html</link>
		<comments>https://worthliv.com/cpp_post_31.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 02:45:38 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1344</guid>
		<description><![CDATA[構造体は、複数の異なるデータ型のメンバから構成された、新しいデータ型を定義するために使用します。 構造体のメンバは、それぞれが独自に記憶領域を確保します。 スポンサーリンク 構造体 struct structure {  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_31.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_31.html" />
	</item>
		<item>
		<title>構造体・struct／構造体の宣言と初期化</title>
		<link>https://worthliv.com/cpp_post_30.html</link>
		<comments>https://worthliv.com/cpp_post_30.html#comments</comments>
		<pubDate>Wed, 05 Jun 2013 17:15:15 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[構造体・共用体]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1343</guid>
		<description><![CDATA[すべての要素が同じデータ型の場合、C++では、配列で要素をグループにまとめて保持できます。 しかし、整数、文字列など異なるデータ型から構成される要素を、一つのデータにまとめたいと考える場合、構造体というデータ型を使います [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_30.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_30.html" />
	</item>
	</channel>
</rss>
