<?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-array/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-array/feed" />
	<item>
		<title>2進数・8進数・16進数・10進数と変換方法</title>
		<link>https://worthliv.com/cpp_281610.html</link>
		<comments>https://worthliv.com/cpp_281610.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 18:06: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=1310</guid>
		<description><![CDATA[2進数、8進数、16進数、10進数などの数字の考え方を知っておくと、プログラミングを行う上で役に立つ場合があります。 私たち人間が日常生活で使っているのは、10進数です。 コンピュータが扱うのは、1と0の組み合わせで表せ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_281610.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_281610.html" />
	</item>
		<item>
		<title>修飾子</title>
		<link>https://worthliv.com/cpp_post_11.html</link>
		<comments>https://worthliv.com/cpp_post_11.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 17:45:45 +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=1309</guid>
		<description><![CDATA[C++の修飾子をまとめます。 修飾子とは、変数宣言で、変数の前につける特定の意味を持つ形容詞みたいなものです。 スポンサーリンク 定数の修飾子 const 変更できない定数を宣言するときに使う。 記憶クラス修飾子 reg [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_11.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_11.html" />
	</item>
		<item>
		<title>定数と参照型の宣言・&amp;</title>
		<link>https://worthliv.com/cpp_post_10.html</link>
		<comments>https://worthliv.com/cpp_post_10.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 17:20:41 +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=1308</guid>
		<description><![CDATA[定数の宣言 スポンサーリンク プログラム中で共通して、常に変わらない値を使用したい場合があります。 この場合、定数を用いるのですが、C++でも定数の宣言ができます。 const float TAX = 0.05; //  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_10.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_10.html" />
	</item>
		<item>
		<title>整数型・int</title>
		<link>https://worthliv.com/cpp_post_9.html</link>
		<comments>https://worthliv.com/cpp_post_9.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 15:00:47 +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=1306</guid>
		<description><![CDATA[C/C++では、変数を定義するときに、型を宣言しなければならないことは、これまでも説明しました。 整数型の変数を宣言するには、intを用います。 int型のサイズは、2～4バイトとなりますが、マシン環境によって異なります [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_9.html" />
	</item>
		<item>
		<title>CとC++文字列の変換、違い</title>
		<link>https://worthliv.com/cpp_cc_1.html</link>
		<comments>https://worthliv.com/cpp_cc_1.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 14:36:10 +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=1305</guid>
		<description><![CDATA[C++文字列をC文字列に変換 c_str()メンバ関数を用いることで、C++スタイルの文字列をC形式の文字列に変換できます。 スポンサーリンク char c_char[100]; // Cの文字列 std::string [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_cc_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_cc_1.html" />
	</item>
		<item>
		<title>文字列関数／文字列のコピー・連結</title>
		<link>https://worthliv.com/cpp_post_8.html</link>
		<comments>https://worthliv.com/cpp_post_8.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 14:07:36 +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=1304</guid>
		<description><![CDATA[文字列関数 スポンサーリンク std::strcpy(文字列1, 文字列2) 文字列2を文字列1にコピーする std::strncpy(文字列1, 文字列2, 長さ) 文字列2を、指定された長さの範囲内で、文字列1にコピ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_8.html" />
	</item>
		<item>
		<title>Cの文字列とC++の文字列コピー</title>
		<link>https://worthliv.com/cpp_cc.html</link>
		<comments>https://worthliv.com/cpp_cc.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 12:54:34 +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=1303</guid>
		<description><![CDATA[Cの文字列 スポンサーリンク C++でも、Cプログラムが動くようにと、C++ではCの文字列の記述の仕方が、有効となっています。 Cの文字列は、文字の配列となっており、以下のように記述します。 #include &#60;i [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_cc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_cc.html" />
	</item>
		<item>
		<title>assert文で配列要素の範囲外エラーを防ぐ</title>
		<link>https://worthliv.com/cpp_assert.html</link>
		<comments>https://worthliv.com/cpp_assert.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 12:03:42 +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=1301</guid>
		<description><![CDATA[assertモジュールを使うことで、プログラムのクラッシュを回避できます。 配列の範囲外エラーは、致命的なものになる場合がありますので、以下のようにassert文を利用すれば、セルフチェックとして働きます。 スポンサーリ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_assert.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_assert.html" />
	</item>
		<item>
		<title>変数の初期化</title>
		<link>https://worthliv.com/cpp_post_6.html</link>
		<comments>https://worthliv.com/cpp_post_6.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 11:35:27 +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=1300</guid>
		<description><![CDATA[C++では、変数を宣言すると同時に、初期化（値の代入）を行えます。 スポンサーリンク int count(0); // countを初期化 int count = 0; // countを初期化 int datas[3] [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_6.html" />
	</item>
		<item>
		<title>文字列の入力・std::cin</title>
		<link>https://worthliv.com/cpp_stdcin.html</link>
		<comments>https://worthliv.com/cpp_stdcin.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 10:44:27 +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=1299</guid>
		<description><![CDATA[文字列を入力から受け取る場合、少し難しい操作が必要となります。 といっても、それほど難しくはないので、大丈夫です。 スポンサーリンク 数字や文字（int,float,char,wchar_t)などの場合は・・・ std: [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_stdcin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_stdcin.html" />
	</item>
		<item>
		<title>データ出力と入力／std::coutとstd::cin</title>
		<link>https://worthliv.com/cpp_stdcoutstdcin.html</link>
		<comments>https://worthliv.com/cpp_stdcoutstdcin.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 10:27:01 +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=1298</guid>
		<description><![CDATA[ここまで、出力のためのクラスオブジェクト、std::coutは何度も登場しました。 逆のデータ入力に関しては、std::cinクラスオブジェクトを用います。 スポンサーリンク #include &#60;iostream&#038; [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_stdcoutstdcin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_stdcoutstdcin.html" />
	</item>
		<item>
		<title>文字列の宣言（std::string）と操作</title>
		<link>https://worthliv.com/cpp_post_5.html</link>
		<comments>https://worthliv.com/cpp_post_5.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 10:04:05 +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=1297</guid>
		<description><![CDATA[文字の宣言（1文字の文字）は、文字／char型・ワイド文字型で、説明しました。 スポンサーリンク しかし、プログラミングを行う上では、文字列を変数に代入したい場合も多いです。 C++には、stirngモジュールが含まれて [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_5.html" />
	</item>
		<item>
		<title>配列の宣言</title>
		<link>https://worthliv.com/cpp_post_4.html</link>
		<comments>https://worthliv.com/cpp_post_4.html#comments</comments>
		<pubDate>Sun, 02 Jun 2013 09:48:32 +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=1296</guid>
		<description><![CDATA[C/C++の配列の宣言は、次のように行います。 スポンサーリンク int datas[3]; これで、datas[0]、datas[1]、datas[2]、の3つの要素からなる配列を宣言しています。 一番目の要素のインデ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_4.html" />
	</item>
	</channel>
</rss>
