<?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/"
	>

<channel>
	<title>CodingUnit Programming Tutorials &#187; C Reference ctype.h Functions</title>
	<atom:link href="http://www.codingunit.com/category/c-language-reference/c-reference-ctype-h-functions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codingunit.com</link>
	<description>CodingUnit is your online resource for learning to program. Tutorials on C, C++, PHP, Python, MySQL, Java, JQuery, Opengl, DirectX and much more!</description>
	<lastBuildDate>Sat, 14 Jan 2012 19:59:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>C Reference  Convert to upper case: toupper()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-convert-to-upper-case-toupper</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-convert-to-upper-case-toupper#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=277</guid>
		<description><![CDATA[The function toupper() returns a uppercase character of the character that is put in. toupper() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { int counter=0; char mychar; char str[]="TeSt THis seNTeNce.\n"; while (str[counter]) { mychar=str[counter]; putchar (toupper(mychar)); counter++; } return 0; } Note: the sentence will be converted to all uppercase letters. C Reference Convert [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-convert-to-upper-case-toupper">C Reference <ctype.h> Convert to upper case: toupper()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-convert-to-upper-case-toupper/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Convert to lower case: tolower()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-convert-to-lower-case-tolower</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-convert-to-lower-case-tolower#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=274</guid>
		<description><![CDATA[The function tolower() returns a lowercase character of the character that is put in. tolower() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { int counter=0; char mychar; char str[]="TeSt THis seNTeNce.\n"; while (str[counter]) { mychar=str[counter]; putchar (tolower(mychar)); counter++; } return 0; } Note: the sentence will be converted to all lowercase letters. C Reference Convert [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-convert-to-lower-case-tolower">C Reference <ctype.h> Convert to lower case: tolower()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-convert-to-lower-case-tolower/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C Reference  Hexidecimal Digit Test: isxdigit()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-hexidecimal-digit-test-isxdigit</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-hexidecimal-digit-test-isxdigit#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:25:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>

		<guid isPermaLink="false">http://localhost/?p=272</guid>
		<description><![CDATA[The function isxdigit() returns a non-zero if its argument is a hexadecimal digit. (If the argument is a: a-f, A-F, or 0-9). If the argument is not a hexadecimal digit, then zero is returned. isxdigit() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { char a; scanf( "%c", &#38;a ); if( isxdigit(a) ) printf( "Is a [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-hexidecimal-digit-test-isxdigit">C Reference <ctype.h> Hexidecimal Digit Test: isxdigit()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-hexidecimal-digit-test-isxdigit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Upper case letter test: isupper()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-upper-case-letter-test-isupper</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-upper-case-letter-test-isupper#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:23:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=270</guid>
		<description><![CDATA[The isupper() function returns a non-zero if its argument is an uppercase letter. If the argument is not an uppercase letter, then zero is returned. isupper() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { char a; scanf( "%c", &#38;a ); if( isupper(a) ) printf( "This is an uppercase letter: %c\n", a ); else printf( "This [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-upper-case-letter-test-isupper">C Reference <ctype.h> Upper case letter test: isupper()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-upper-case-letter-test-isupper/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Space, formfeed, newline, etc test: isspace()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-space-formfeed-newline-etc-test-isspace</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-space-formfeed-newline-etc-test-isspace#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:22:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>

		<guid isPermaLink="false">http://localhost/?p=268</guid>
		<description><![CDATA[The isspace() function returns a non-zero if its argument is a single space, newline, tab, form feed, vertical tab, or carriage return. If the argument is not a single space, newline, tab, form feed, vertical tab, or carriage return , then zero is returned. isspace() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { int newchar; [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-space-formfeed-newline-etc-test-isspace">C Reference <ctype.h> Space, formfeed, newline, etc test: isspace()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-space-formfeed-newline-etc-test-isspace/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Punctuation Character: ispunct()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-punctuation-character-ispunct</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-punctuation-character-ispunct#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:21:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=266</guid>
		<description><![CDATA[The ispunct() function returns a non-zero if its argument is a punctuation character. (All characters except alphanumeric or white-space). If the argument is not a punctuation character, then zero is returned. ispunct() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { int counter=0; int counter2=0; char str[]="Hello, World!!"; while (str[counter]) { if (ispunct(str[counter])) counter2++; counter++; } [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-punctuation-character-ispunct">C Reference <ctype.h> Punctuation Character: ispunct()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-punctuation-character-ispunct/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Printing Character: isprint()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-printing-character-isprint</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-printing-character-isprint#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:20:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>
		<category><![CDATA[C Language Reference]]></category>

		<guid isPermaLink="false">http://localhost/?p=264</guid>
		<description><![CDATA[The function isprint() returns a non-zero if its argument is a printable character (including a white-space). If the argument is not a printable character (like the newline character &#8216;\n&#8217; ) , then zero is returned. isprint() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { int counter=0; char str[]="line one \n line two \n line three [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-printing-character-isprint">C Reference <ctype.h> Printing Character: isprint()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-printing-character-isprint/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Lower Case Letter Test: islower()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-lower-case-letter-test-islower</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-lower-case-letter-test-islower#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:19:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>

		<guid isPermaLink="false">http://localhost/?p=262</guid>
		<description><![CDATA[The islower() function returns a non-zero if its argument is a lowercase letter. If the argument is not a lowercase letter, then zero is returned. islower() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { char a; scanf( "%c", &#38;a ); if( islower(a) ) printf( "Is lower case: %c\n", a ); else printf( "Is NOT lower [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-lower-case-letter-test-islower">C Reference <ctype.h> Lower Case Letter Test: islower()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-lower-case-letter-test-islower/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Printing Character Test (not space): isgraph()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-printing-character-test-not-space-isgraph</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-printing-character-test-not-space-isgraph#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:18:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>

		<guid isPermaLink="false">http://localhost/?p=260</guid>
		<description><![CDATA[The function isgraph() checks if parameter is a character with graphical representation that can be printed. Whitespace characters like space are skipped. If the argument is not, then zero is returned. isgraph() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { FILE * ptr_file; int a; ptr_file=fopen ("file.txt","r"); if (ptr_file) { do { a = fgetc [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-printing-character-test-not-space-isgraph">C Reference <ctype.h> Printing Character Test (not space): isgraph()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-printing-character-test-not-space-isgraph/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C Reference  Decimal Digit Test: isdigit()</title>
		<link>http://www.codingunit.com/c-reference-ctype-h-decimal-digit-test-isdigit</link>
		<comments>http://www.codingunit.com/c-reference-ctype-h-decimal-digit-test-isdigit#comments</comments>
		<pubDate>Thu, 23 Jul 2009 08:15:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Reference ctype.h Functions]]></category>

		<guid isPermaLink="false">http://localhost/?p=255</guid>
		<description><![CDATA[The function isdigit() returns a non-zero if its argument is a digit between 0 and 9. If its argument is not a digit between 0 and 9, then zero is returned. isdigit() source code example: #include&#60;stdio.h&#62; #include&#60;ctype.h&#62; int main() { char a; scanf( "%c", &#38;a ); if( isdigit(a) ) printf( "This is a digit: %c\n", [...]<p><a href="http://www.codingunit.com/c-reference-ctype-h-decimal-digit-test-isdigit">C Reference <ctype.h> Decimal Digit Test: isdigit()</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/c-reference-ctype-h-decimal-digit-test-isdigit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

