<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>Comments on: problem in conversion of string</title>
	<atom:link href="https://www.emblogic.com/blog/07/problem-in-conversion-of-string/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Mon, 07 Oct 2013 04:00:03 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>By: nishank aggarwal</title>
		<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/#comment-945</link>
		<dc:creator><![CDATA[nishank aggarwal]]></dc:creator>
		<pubDate>Sun, 08 Jul 2012 07:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3686#comment-945</guid>
		<description><![CDATA[this is str[l]!= &#039;&#039;.............]]></description>
		<content:encoded><![CDATA[<p>this is str[l]!= &#8221;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nishank aggarwal</title>
		<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/#comment-944</link>
		<dc:creator><![CDATA[nishank aggarwal]]></dc:creator>
		<pubDate>Sun, 08 Jul 2012 07:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3686#comment-944</guid>
		<description><![CDATA[#include
int main()
{
  char str[];int l;
  pf(&quot;\nenter any name=&quot;);
  sf(&quot;%s&quot;,&amp;str);
  l=0;
  while(str[l] !=&#039;&#039;)
 {
   str[l] = str[l] - 32;
     l++;
 }
  pf(&quot;\nupper case = %s&quot;,str);
  return 0;
}]]></description>
		<content:encoded><![CDATA[<p>#include<br />
int main()<br />
{<br />
  char str[];int l;<br />
  pf(&#8220;\nenter any name=&#8221;);<br />
  sf(&#8220;%s&#8221;,&amp;str);<br />
  l=0;<br />
  while(str[l] !=&#8221;)<br />
 {<br />
   str[l] = str[l] &#8211; 32;<br />
     l++;<br />
 }<br />
  pf(&#8220;\nupper case = %s&#8221;,str);<br />
  return 0;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemant.kumar</title>
		<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/#comment-943</link>
		<dc:creator><![CDATA[hemant.kumar]]></dc:creator>
		<pubDate>Sat, 07 Jul 2012 08:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3686#comment-943</guid>
		<description><![CDATA[sorry its tolower]]></description>
		<content:encoded><![CDATA[<p>sorry its tolower</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemant.kumar</title>
		<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/#comment-942</link>
		<dc:creator><![CDATA[hemant.kumar]]></dc:creator>
		<pubDate>Sat, 07 Jul 2012 08:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3686#comment-942</guid>
		<description><![CDATA[char arr[]=&quot;HELLO WORLD&quot;;
for(i=0;i&lt;strlen(arr);i++)
{
arr[i]=toupper(*(arr+i));
}]]></description>
		<content:encoded><![CDATA[<p>char arr[]=&#8221;HELLO WORLD&#8221;;<br />
for(i=0;i&lt;strlen(arr);i++)<br />
{<br />
arr[i]=toupper(*(arr+i));<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hitesh Dhanwani</title>
		<link>https://www.emblogic.com/blog/07/problem-in-conversion-of-string/#comment-940</link>
		<dc:creator><![CDATA[Hitesh Dhanwani]]></dc:creator>
		<pubDate>Sat, 07 Jul 2012 04:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://emblogic.org/blog/?p=3686#comment-940</guid>
		<description><![CDATA[two ways :
1) using a pre defined function toupper() which requires the header file ctype.h to be included in your program.
e.g
char f1=&#039;h&#039;;
f1=toupper();
now f1=&#039;H&#039;
2) you can also define a function which uses the ASCII values of characters if the character is a lower case laphabet subtract 32.]]></description>
		<content:encoded><![CDATA[<p>two ways :<br />
1) using a pre defined function toupper() which requires the header file ctype.h to be included in your program.<br />
e.g<br />
char f1=&#8217;h&#8217;;<br />
f1=toupper();<br />
now f1=&#8217;H&#8217;<br />
2) you can also define a function which uses the ASCII values of characters if the character is a lower case laphabet subtract 32.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
