<?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: Input and Output</title>
	<atom:link href="http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/</link>
	<description>C and C++ Programming Tutorials and Source code</description>
	<lastBuildDate>Wed, 30 Jun 2010 18:10:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: scarletdream</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-19469</link>
		<dc:creator>scarletdream</dc:creator>
		<pubDate>Fri, 19 Jun 2009 02:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-19469</guid>
		<description>how to change the output to input in C++....the another&#039;s program output works as an input...can everybody help me?</description>
		<content:encoded><![CDATA[<p>how to change the output to input in C++&#8230;.the another&#8217;s program output works as an input&#8230;can everybody help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: laarni</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-19205</link>
		<dc:creator>laarni</dc:creator>
		<pubDate>Fri, 01 May 2009 15:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-19205</guid>
		<description>How to write a program that will compute and display the midterm grade of student.
the midterm grade is equal to 1/3 of the minor A exam and 2/3 of the midterm exam.please help me for the code i need it 2mrw.plz email me add dj_bendz67@yahoo.com for the code.tnx</description>
		<content:encoded><![CDATA[<p>How to write a program that will compute and display the midterm grade of student.<br />
the midterm grade is equal to 1/3 of the minor A exam and 2/3 of the midterm exam.please help me for the code i need it 2mrw.plz email me add <a href="mailto:dj_bendz67@yahoo.com">dj_bendz67@yahoo.com</a> for the code.tnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jamz2008</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-19052</link>
		<dc:creator>jamz2008</dc:creator>
		<pubDate>Mon, 05 Jan 2009 12:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-19052</guid>
		<description>4.Input the amount of purchase, which is less than P100.00. Calculate the Change with the following breakdown:

P50.00 - _______;
P20.00 - _______;
P10.00 - _______;
P  5.00 - _______;
P  1.00 - _______;

PLEASE HELP ME WITH THIS</description>
		<content:encoded><![CDATA[<p>4.Input the amount of purchase, which is less than P100.00. Calculate the Change with the following breakdown:</p>
<p>P50.00 &#8211; _______;<br />
P20.00 &#8211; _______;<br />
P10.00 &#8211; _______;<br />
P  5.00 &#8211; _______;<br />
P  1.00 &#8211; _______;</p>
<p>PLEASE HELP ME WITH THIS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miiszarniie</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18987</link>
		<dc:creator>miiszarniie</dc:creator>
		<pubDate>Sun, 16 Nov 2008 16:32:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18987</guid>
		<description>write a C program that will create a 3x3 matrix &amp; compute for the sum of columns &amp; sum of rows.</description>
		<content:encoded><![CDATA[<p>write a C program that will create a 3&#215;3 matrix &amp; compute for the sum of columns &amp; sum of rows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clarence_L</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18926</link>
		<dc:creator>Clarence_L</dc:creator>
		<pubDate>Thu, 09 Oct 2008 11:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18926</guid>
		<description>Please Help Me Onegai i need an output i will put 5 numbers that will set in ascending and descending order using array in c++ thnx in advance please i really in need....</description>
		<content:encoded><![CDATA[<p>Please Help Me Onegai i need an output i will put 5 numbers that will set in ascending and descending order using array in c++ thnx in advance please i really in need&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sme lng;-></title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18850</link>
		<dc:creator>sme lng;-></dc:creator>
		<pubDate>Tue, 23 Sep 2008 23:28:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18850</guid>
		<description>

#include
main()
{
int n,r;
clrscr();
printf(&quot;
 Enter a number:&quot;);
scanf(&quot;%d&quot;, &amp;n);
for(; n != 0 ;) {
r= n%10;
printf(&quot;%d&quot;, r);
n= n%10;
}
getch();
}</description>
		<content:encoded><![CDATA[<p>#include<br />
main()<br />
{<br />
int n,r;<br />
clrscr();<br />
printf(&#8221;<br />
 Enter a number:&#8221;);<br />
scanf(&#8220;%d&#8221;, &#038;n);<br />
for(; n != 0 ;) {<br />
r= n%10;<br />
printf(&#8220;%d&#8221;, r);<br />
n= n%10;<br />
}<br />
getch();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yan;-></title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18848</link>
		<dc:creator>yan;-></dc:creator>
		<pubDate>Tue, 23 Sep 2008 23:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18848</guid>
		<description>#include&lt;stdio.h&gt;
main()
{
int n,r;
clrscr();
printf(&quot;
 Enter a number:&quot;);
scanf(&quot;%d&quot;, &amp;n);
for(; n != 0) {
  r= n%10;
  printf(&quot;%d&quot;, r);
  n= n/10;
}
getch();
}
...dAtz ol..hehehe :-)
</description>
		<content:encoded><![CDATA[<p>#include<stdio .h><br />
main()<br />
{<br />
int n,r;<br />
clrscr();<br />
printf(&#8221;<br />
 Enter a number:&#8221;);<br />
scanf(&#8220;%d&#8221;, &#038;n);<br />
for(; n != 0) {<br />
  r= n%10;<br />
  printf(&#8220;%d&#8221;, r);<br />
  n= n/10;<br />
}<br />
getch();<br />
}<br />
&#8230;dAtz ol..hehehe :-)</stdio></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18834</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Sun, 21 Sep 2008 04:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18834</guid>
		<description>hi is there any one who know about c language Abook or site that can be usefull  for bigginer becouse I realy need it.
Thanks </description>
		<content:encoded><![CDATA[<p>hi is there any one who know about c language Abook or site that can be usefull  for bigginer becouse I realy need it.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Demkish</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-3/#comment-18823</link>
		<dc:creator>Demkish</dc:creator>
		<pubDate>Tue, 16 Sep 2008 08:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18823</guid>
		<description>Hi, is there anyone who can help me make a program in C in which if we enter a month and day the program will outputs a zodiac sign. Please help me I need it badly...:-(</description>
		<content:encoded><![CDATA[<p>Hi, is there anyone who can help me make a program in C in which if we enter a month and day the program will outputs a zodiac sign. Please help me I need it badly&#8230;:-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hei</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/input-output/comment-page-2/#comment-18800</link>
		<dc:creator>hei</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=338#comment-18800</guid>
		<description>
-------- Original Message --------
&lt;code&gt;&lt;pre lang==&quot;c&quot;&gt;#include&lt;stdio.h&gt;
#include&lt;conio.h&gt;
#include&lt;string.h&gt;

main()
{
      char a[50],b[50];
      int i,j,len;
      strcpy(a,&quot;&quot;);
      strcpy(b,&quot;&quot;);
      printf(&quot;Enter the Word:&quot;);
      gets(a);
      len=strlen(a);
      j=0;
      for(i=len-1;i&gt;=0;i--)
      {
         b[j]=a[i];
         j++;
      }
      b[j]=&#039;ï¿½&#039;;
      if(strcmp(a,b)==0)
      printf(&quot;it is a palindrome&quot;);
      else
      printf(&quot;it is not a palindrome&quot;);
      getch();
}
&lt;/pre&gt;
&lt;/code&gt;
-------- Original Message --------
write a program using string function  that determine if the input word is a palindrome.A palindrome is word  that produces the same word when it is reversed.

sample input/output dialogue:

Enter a word:AMA
        Reversed:AMA
        &quot;it is a palindrome&quot;

         enter a word:STI
         Reversed:IST
         &quot;it is not a palindrome&quot;

After I paste it at my cc+ what should i do to make work like a real program?
</description>
		<content:encoded><![CDATA[<p>&#8212;&#8212;&#8211; Original Message &#8212;&#8212;&#8211;<br />
<code>
<pre lang=="c">#include<stdio .h>
#include<conio .h>
#include<string .h>

main()
{
      char a[50],b[50];
      int i,j,len;
      strcpy(a,"");
      strcpy(b,"");
      printf("Enter the Word:");
      gets(a);
      len=strlen(a);
      j=0;
      for(i=len-1;i>=0;i--)
      {
         b[j]=a[i];
         j++;
      }
      b[j]='ï¿½';
      if(strcmp(a,b)==0)
      printf("it is a palindrome");
      else
      printf("it is not a palindrome");
      getch();
}
</string></conio></stdio></pre>
<p></code><br />
&#8212;&#8212;&#8211; Original Message &#8212;&#8212;&#8211;<br />
write a program using string function  that determine if the input word is a palindrome.A palindrome is word  that produces the same word when it is reversed.</p>
<p>sample input/output dialogue:</p>
<p>Enter a word:AMA<br />
        Reversed:AMA<br />
        &#8220;it is a palindrome&#8221;</p>
<p>         enter a word:STI<br />
         Reversed:IST<br />
         &#8220;it is not a palindrome&#8221;</p>
<p>After I paste it at my cc+ what should i do to make work like a real program?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
