<?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: Print pyramids and diamonds in C Language</title>
	<atom:link href="http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/</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>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>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>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>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>By: iti</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-21638</link>
		<dc:creator>iti</dc:creator>
		<pubDate>Thu, 07 Jun 2012 06:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-21638</guid>
		<description>how can i get out put in following format??
123454321
1234 4321
123   321 
12     21
1       1
12     21
123   321
1234 4321
123454321</description>
		<content:encoded><![CDATA[<p>how can i get out put in following format??<br />
123454321<br />
1234 4321<br />
123   321<br />
12     21<br />
1       1<br />
12     21<br />
123   321<br />
1234 4321<br />
123454321</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghavendra</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-20295</link>
		<dc:creator>Raghavendra</dc:creator>
		<pubDate>Mon, 17 Oct 2011 14:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-20295</guid>
		<description>Hello all....
 i need o print stsrs in this format...


                       *
   	             * * *
	           * * * * *
                   *       *
                 * *       * *
               * * *       * * *
                 * *       * *
                   *       *
                   * * * * *
                     * * *
                       *</description>
		<content:encoded><![CDATA[<p>Hello all&#8230;.<br />
 i need o print stsrs in this format&#8230;</p>
<p>                       *<br />
   	             * * *<br />
	           * * * * *<br />
                   *       *<br />
                 * *       * *<br />
               * * *       * * *<br />
                 * *       * *<br />
                   *       *<br />
                   * * * * *<br />
                     * * *<br />
                       *</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nckeerthi</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-19757</link>
		<dc:creator>nckeerthi</dc:creator>
		<pubDate>Sun, 01 May 2011 17:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-19757</guid>
		<description>oh noo its not like that 
it must be in n shape
*    *
**   *
* *  *
*  * *
*    *</description>
		<content:encoded><![CDATA[<p>oh noo its not like that<br />
it must be in n shape<br />
*    *<br />
**   *<br />
* *  *<br />
*  * *<br />
*    *</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nckeerthi</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-19756</link>
		<dc:creator>nckeerthi</dc:creator>
		<pubDate>Sun, 01 May 2011 17:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-19756</guid>
		<description>please help me how can i get the output a follows give me a simple code in c pleaseeeeeeeee its urgent
*    *
**   *
* *  *
*  * *
*    *
guys please help me its important i should get it by tomarrow so please mail this code to my email id pleaseeeeeeee</description>
		<content:encoded><![CDATA[<p>please help me how can i get the output a follows give me a simple code in c pleaseeeeeeeee its urgent<br />
*    *<br />
**   *<br />
* *  *<br />
*  * *<br />
*    *<br />
guys please help me its important i should get it by tomarrow so please mail this code to my email id pleaseeeeeeee</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: loveb</title>
		<link>http://www.mycplus.com/featured-articles/print-pyramids-and-diamonds-in-c-language/comment-page-1/#comment-19627</link>
		<dc:creator>loveb</dc:creator>
		<pubDate>Sun, 25 Jul 2010 06:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mycplus.com/?p=480#comment-19627</guid>
		<description>I have creatred proramme for the same triangle using formated input output it give less iteration of loops so execution time nd run time is decreases about 45 percent for pls check out and if any mistake pls infrom me

#include
#include
	void main(){
	  int i,j,no;
	  printf(&quot;Enter the no: &quot;);
	  scanf(&quot;%d&quot;,&amp;no);
	  for(i=1;i&lt;=no;i++){
	     printf(&quot;%*c\b&quot;,no-i+1,&#039; &#039;);
	     for(j=1;j=1;i--){
	     printf(&quot;%*c\b&quot;,no-i+1,&#039; &#039;);
	     for(j=1;j&lt;=i;j++){
		 printf(&quot; *&quot;);
		 getch();
	     }
	     printf(&quot;\n&quot;);
	  }
	  getch();

	  }</description>
		<content:encoded><![CDATA[<p>I have creatred proramme for the same triangle using formated input output it give less iteration of loops so execution time nd run time is decreases about 45 percent for pls check out and if any mistake pls infrom me</p>
<p>#include<br />
#include<br />
	void main(){<br />
	  int i,j,no;<br />
	  printf(&#8220;Enter the no: &#8220;);<br />
	  scanf(&#8220;%d&#8221;,&amp;no);<br />
	  for(i=1;i&lt;=no;i++){<br />
	     printf(&quot;%*c\b&quot;,no-i+1,&#039; &#039;);<br />
	     for(j=1;j=1;i&#8211;){<br />
	     printf(&#8220;%*c\b&#8221;,no-i+1,&#8217; &#8216;);<br />
	     for(j=1;j&lt;=i;j++){<br />
		 printf(&quot; *&quot;);<br />
		 getch();<br />
	     }<br />
	     printf(&quot;\n&quot;);<br />
	  }<br />
	  getch();</p>
<p>	  }</p>
]]></content:encoded>
	</item>
</channel>
</rss>
