<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>Cheap-Computers-HowTo.com</title>
	<link>http://www.cheap-computers-howto.com</link>
	<description>A collection of ICT tips, howtos and tutes. Enjoy!</description>
	<lastBuildDate>Wed, 22 Jul 2009 20:06:21 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>The string class in C++</title>
		<description><![CDATA[In C++ a string is implemented as an instance of the string class. Inorder to use the functions of this class, the following include statement must be part of your program code:
#include &#60;string&#62;
As the string class is a member of the namespace  std , an instance of this class is declared with the following syntax:
std::string    [...]]]></description>
		<link>http://www.cheap-computers-howto.com/2009/05/the-string-class-in-c/</link>
			</item>
	<item>
		<title>Strings in C++</title>
		<description><![CDATA[Strings and Arrays of characters in C++
Low level strings are represented by arrays of characters in C and C++. These arrays are terminated by &#8216;\0&#8242; , the special marker character null, which is used to indicate the end of a string.
char string1[ ] = { &#8216;H&#8217;,'e&#8217;,'l&#8217;,'l&#8217;,'o&#8217;,&#8217; &#8216;, &#8216;W&#8217;, &#8216;o&#8217;, &#8216;r&#8217;, &#8216;l&#8217;, &#8216;d&#8217;, &#8216;\0&#8242; }
The following [...]]]></description>
		<link>http://www.cheap-computers-howto.com/2009/05/strings-in-c/</link>
			</item>
	<item>
		<title>Using Enumerations in C++</title>
		<description><![CDATA[Enumerations in C++ work in a similar manner to other languages, to restrict a particular variable to having a specific set of values.
For example:
enum Names {Fred, Mary, John, Anne}
In this case, a  new type is created, which may have &#60;b&#62;only&#60;/b&#62; the values Fred, Mary, John, Anne.
The compiler will represent Fred as 0, Mary as 1  [...]]]></description>
		<link>http://www.cheap-computers-howto.com/2009/05/hello-world/</link>
			</item>
</channel>
</rss>
