<?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 for C and C++ Programming Resources</title>
	<atom:link href="http://www.mycplus.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mycplus.com</link>
	<description>C and C++ Programming Tutorials and Source code</description>
	<lastBuildDate>Sat, 30 Mar 2013 10:31:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>Comment on Print pyramids and diamonds in C Language by Bs.Ram</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-21955</link>
		<dc:creator>Bs.Ram</dc:creator>
		<pubDate>Sat, 30 Mar 2013 10:31:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-21955</guid>
		<description>void main()
{
int i,j,n;
cout&lt;&gt;n;
for(i&lt;0;i&lt;n;i++)
{
for(j=0;j&lt;i;j++)
{
cout&lt;&lt;&quot;A&quot;;
}
cout&lt;&lt;&quot;\n&quot;;
}
}</description>
		<content:encoded><![CDATA[<p>void main()<br />
{<br />
int i,j,n;<br />
cout<>n;<br />
for(i&lt;0;i<n;i++)<br />
{<br />
for(j=0;j<i;j++)<br />
{<br />
cout<<&#8220;A&#8221;;<br />
}<br />
cout<<&#8220;\n&#8221;;<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Print pyramids and diamonds in C Language by Bs.Ram</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-21954</link>
		<dc:creator>Bs.Ram</dc:creator>
		<pubDate>Sat, 30 Mar 2013 10:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-21954</guid>
		<description>Hello... Ramya... try.. this..pls

void main()
{
     int i,j,n;
     cout&lt;&gt;n;
     for(i&lt;0;i&lt;n;i++)
     {
          for(j=0;j&lt;i;j++)
          {
                 cout&lt;&lt;&quot; A&quot;;
          }
          cout&lt;&lt;&quot;\n&quot;;
     }
}</description>
		<content:encoded><![CDATA[<p>Hello&#8230; Ramya&#8230; try.. this..pls</p>
<p>void main()<br />
{<br />
     int i,j,n;<br />
     cout<>n;<br />
     for(i&lt;0;i<n;i++)<br />
     {<br />
          for(j=0;j<i;j++)<br />
          {<br />
                 cout<<&#8221; A&#8221;;<br />
          }<br />
          cout<<&#8220;\n&#8221;;<br />
     }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calculator by thonixsunga</title>
		<link>http://www.mycplus.com/free-utilities/scientific-calculator/comment-page-1/#comment-21804</link>
		<dc:creator>thonixsunga</dc:creator>
		<pubDate>Mon, 22 Oct 2012 09:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=207#comment-21804</guid>
		<description>Wow this really great and awsome... nice work! but its not working on my  C++ i am using Microsoft Visual C++ 2010 and im running windows 7 64bit.. can you send me this code that can conpatible with my system?thank you so much</description>
		<content:encoded><![CDATA[<p>Wow this really great and awsome&#8230; nice work! but its not working on my  C++ i am using Microsoft Visual C++ 2010 and im running windows 7 64bit.. can you send me this code that can conpatible with my system?thank you so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Print pyramids and diamonds in C Language by ramya</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-21803</link>
		<dc:creator>ramya</dc:creator>
		<pubDate>Wed, 17 Oct 2012 05:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-21803</guid>
		<description>I need the fellowing output


enter the no: 8
enter the symbol: A

           
              A
             AAA
            AAAAA
           AAAAAAA
          AAAAAAAAA


please do the needful</description>
		<content:encoded><![CDATA[<p>I need the fellowing output</p>
<p>enter the no: 8<br />
enter the symbol: A</p>
<p>              A<br />
             AAA<br />
            AAAAA<br />
           AAAAAAA<br />
          AAAAAAAAA</p>
<p>please do the needful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arrays in C Programming by robin48gx</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/arrays/comment-page-2/#comment-21770</link>
		<dc:creator>robin48gx</dc:creator>
		<pubDate>Tue, 11 Sep 2012 10:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=336#comment-21770</guid>
		<description>The 2d array example in the `tutorial&#039; is syntactically incorrect.
You need commas after the braces

double array[4][4] = {
{ 1.2, 1.2, 1.3, 1.4 },
{ 1.2, 1.2, 1.3, 1.4 },
{ 1.2, 1.2, 1.3, 1.4 },
{ 1.2, 1.2, 1.3, 1.4 }
};

Is correct C syntax. Hope this helps.</description>
		<content:encoded><![CDATA[<p>The 2d array example in the `tutorial&#8217; is syntactically incorrect.<br />
You need commas after the braces</p>
<p>double array[4][4] = {<br />
{ 1.2, 1.2, 1.3, 1.4 },<br />
{ 1.2, 1.2, 1.3, 1.4 },<br />
{ 1.2, 1.2, 1.3, 1.4 },<br />
{ 1.2, 1.2, 1.3, 1.4 }<br />
};</p>
<p>Is correct C syntax. Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arrays in C Programming by Nadim Ansari</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/arrays/comment-page-2/#comment-21762</link>
		<dc:creator>Nadim Ansari</dc:creator>
		<pubDate>Sat, 25 Aug 2012 19:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=336#comment-21762</guid>
		<description>#include
#include
void main()
{
char name[25];
printf(&quot;enter the name:&quot;);
scanf(&quot;%s&quot;,name);
printf(&quot;\n%s&quot;,strlwr(name));
printf(&quot;\n%s&quot;,strupr(name));
getch();
}</description>
		<content:encoded><![CDATA[<p>#include<br />
#include<br />
void main()<br />
{<br />
char name[25];<br />
printf(&#8220;enter the name:&#8221;);<br />
scanf(&#8220;%s&#8221;,name);<br />
printf(&#8220;\n%s&#8221;,strlwr(name));<br />
printf(&#8220;\n%s&#8221;,strupr(name));<br />
getch();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Print pyramids and diamonds in C Language by yeswanth</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-21761</link>
		<dc:creator>yeswanth</dc:creator>
		<pubDate>Fri, 24 Aug 2012 06:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-21761</guid>
		<description>hi everybody

i need pyramid like this

**********
***** ****    
****   ***
**      **
*        *
**      **
***    ***    
***** **** 
**********

i need pyramid like this would anybody plz help me....</description>
		<content:encoded><![CDATA[<p>hi everybody</p>
<p>i need pyramid like this</p>
<p>**********<br />
***** ****<br />
****   ***<br />
**      **<br />
*        *<br />
**      **<br />
***    ***<br />
***** ****<br />
**********</p>
<p>i need pyramid like this would anybody plz help me&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Graphics in C Language by smartanu</title>
		<link>http://www.mycplus.com/tutorials/c-programming-tutorials/graphics-programming/comment-page-3/#comment-21741</link>
		<dc:creator>smartanu</dc:creator>
		<pubDate>Mon, 13 Aug 2012 18:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=358#comment-21741</guid>
		<description>i using a tc3 to do a graphical in C..this error be occur what should i do…
#include
#include
#include
#include
#include
void draw(int x1,int y1,int x2,int y2);
void main()
{

    int x1,y1,x2,y2;
    int gdriver=DETECT,gmode,errorcode;
    initgraph(&amp;gdriver,&amp;gmode,&quot;C:\\TC\\BGI&quot;);
    printf(&quot;Enter the first point \n&quot;);
    scanf(&quot;%d%d&quot;,&amp;x1,&amp;y1);
    printf(&quot;\n\n Enter the second point&quot;);
    scanf(&quot;%d%d&quot;,&amp;x2,&amp;y2);
    printf(&quot;\n\n The line is shown below&quot;);
    draw(x1,y1,x2,y2);
    getch();
}
void draw(int x1,int y1,int x2,int y2)
{
  int x,y,e,i,dx,dy,a;
  x=x1;
  y=y1;
  dx=x2-x1;
  dy=y2-y1;
  a=dx;
  dx=dy;
  dy=a;
  e=2*dy-dx;
  for(i=1;i0)
    {
      x=x+1;
      e=e-2*dx;
    }
    y=y+1;
    e=e+2*dy;
  }
  getch();
}
when i run this programme getting error
Linker error:undefined symbol  _putpixel in module myfile name.
i have executed this programme in lab pc.</description>
		<content:encoded><![CDATA[<p>i using a tc3 to do a graphical in C..this error be occur what should i do…<br />
#include<br />
#include<br />
#include<br />
#include<br />
#include<br />
void draw(int x1,int y1,int x2,int y2);<br />
void main()<br />
{</p>
<p>    int x1,y1,x2,y2;<br />
    int gdriver=DETECT,gmode,errorcode;<br />
    initgraph(&amp;gdriver,&amp;gmode,&#8221;C:\\TC\\BGI&#8221;);<br />
    printf(&#8220;Enter the first point \n&#8221;);<br />
    scanf(&#8220;%d%d&#8221;,&amp;x1,&amp;y1);<br />
    printf(&#8220;\n\n Enter the second point&#8221;);<br />
    scanf(&#8220;%d%d&#8221;,&amp;x2,&amp;y2);<br />
    printf(&#8220;\n\n The line is shown below&#8221;);<br />
    draw(x1,y1,x2,y2);<br />
    getch();<br />
}<br />
void draw(int x1,int y1,int x2,int y2)<br />
{<br />
  int x,y,e,i,dx,dy,a;<br />
  x=x1;<br />
  y=y1;<br />
  dx=x2-x1;<br />
  dy=y2-y1;<br />
  a=dx;<br />
  dx=dy;<br />
  dy=a;<br />
  e=2*dy-dx;<br />
  for(i=1;i0)<br />
    {<br />
      x=x+1;<br />
      e=e-2*dx;<br />
    }<br />
    y=y+1;<br />
    e=e+2*dy;<br />
  }<br />
  getch();<br />
}<br />
when i run this programme getting error<br />
Linker error:undefined symbol  _putpixel in module myfile name.<br />
i have executed this programme in lab pc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Brick Game by Nayan_the_game</title>
		<link>http://www.mycplus.com/source-code/c-source-code/brick-game/comment-page-1/#comment-21715</link>
		<dc:creator>Nayan_the_game</dc:creator>
		<pubDate>Fri, 03 Aug 2012 10:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=58#comment-21715</guid>
		<description>I dont see any problems it ran on my tc</description>
		<content:encoded><![CDATA[<p>I dont see any problems it ran on my tc</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Print pyramids and diamonds shpaes in C language by madhavi</title>
		<link>http://www.mycplus.com/source-code/c-source-code/print-pyramids-and-diamonds-shpaes-in-c-language/comment-page-1/#comment-21682</link>
		<dc:creator>madhavi</dc:creator>
		<pubDate>Fri, 13 Jul 2012 06:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=66#comment-21682</guid>
		<description>i need souece code for following format
                      *
                     *** 
                    *****
                   *******
                  *       *   
                 **       **
                ***       ***
                 **       **
                  *       *
                   *******
                    *****
                     ***
                      *</description>
		<content:encoded><![CDATA[<p>i need souece code for following format<br />
                      *<br />
                     ***<br />
                    *****<br />
                   *******<br />
                  *       *<br />
                 **       **<br />
                ***       ***<br />
                 **       **<br />
                  *       *<br />
                   *******<br />
                    *****<br />
                     ***<br />
                      *</p>
]]></content:encoded>
	</item>
</channel>
</rss>
