<?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: 10 Challenging number pattern programs in C</title>
	<atom:link href="http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html</link>
	<description>Your mantra to job success</description>
	<lastBuildDate>Fri, 10 Feb 2012 11:11:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Nikunjkheni771</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27889</link>
		<dc:creator>Nikunjkheni771</dc:creator>
		<pubDate>Thu, 09 Feb 2012 18:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27889</guid>
		<description>7 8 9 10
4 5 6
2 3 
1 </description>
		<content:encoded><![CDATA[<p>7 8 9 10<br />
4 5 6<br />
2 3<br />
1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikunjkheni771</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27888</link>
		<dc:creator>Nikunjkheni771</dc:creator>
		<pubDate>Thu, 09 Feb 2012 18:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27888</guid>
		<description>void main()
{
int i,j;
for(i=1; i&lt;=4; i++)
{
for(j=1; j&lt;=i; j++)
{
printf(&quot;*&quot;);
}
printf(&quot;n&quot;);
}
getch();
}

</description>
		<content:encoded><![CDATA[<p>void main()<br />
{<br />
int i,j;<br />
for(i=1; i&lt;=4; i++)<br />
{<br />
for(j=1; j&lt;=i; j++)<br />
{<br />
printf(&quot;*&quot;);<br />
}<br />
printf(&quot;n&quot;);<br />
}<br />
getch();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Payalpokar</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27887</link>
		<dc:creator>Payalpokar</dc:creator>
		<pubDate>Wed, 08 Feb 2012 14:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27887</guid>
		<description>give code for following

*  *  *  *  *
*  *      *  *
*               * 
*  *      *  *
*  *  *  *  *</description>
		<content:encoded><![CDATA[<p>give code for following</p>
<p>*  *  *  *  *<br />
*  *      *  *<br />
*               * <br />
*  *      *  *<br />
*  *  *  *  *</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Payalpokar</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27885</link>
		<dc:creator>Payalpokar</dc:creator>
		<pubDate>Wed, 08 Feb 2012 13:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27885</guid>
		<description>plz give me code for following

                      1
                1   0   1
             1  0 0 0 1
        1  0  0  0  0 0 1</description>
		<content:encoded><![CDATA[<p>plz give me code for following</p>
<p>                      1<br />
                1   0   1<br />
             1  0 0 0 1<br />
        1  0  0  0  0 0 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miley Shah</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27883</link>
		<dc:creator>Miley Shah</dc:creator>
		<pubDate>Mon, 06 Feb 2012 17:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27883</guid>
		<description>I want dis pattern using while loop plzz</description>
		<content:encoded><![CDATA[<p>I want dis pattern using while loop plzz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ndevnani55</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27881</link>
		<dc:creator>Ndevnani55</dc:creator>
		<pubDate>Sun, 05 Feb 2012 03:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27881</guid>
		<description>PLEASE GET ME THE CODE THIS PROBLEM
4   3    2    1
   3    2    1
       2    1
           1</description>
		<content:encoded><![CDATA[<p>PLEASE GET ME THE CODE THIS PROBLEM<br />
4   3    2    1<br />
   3    2    1<br />
       2    1<br />
           1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ridzi0207</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27866</link>
		<dc:creator>Ridzi0207</dc:creator>
		<pubDate>Sat, 21 Jan 2012 05:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27866</guid>
		<description>can u plz give me the code for
*******
*******
*   ***  *
*      *    *
*    ***  *
*******
*******
plz...its very urgent
</description>
		<content:encoded><![CDATA[<p>can u plz give me the code for<br />
*******<br />
*******<br />
*   ***  *<br />
*      *    *<br />
*    ***  *<br />
*******<br />
*******<br />
plz&#8230;its very urgent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naveen1728</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27861</link>
		<dc:creator>Naveen1728</dc:creator>
		<pubDate>Thu, 19 Jan 2012 08:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27861</guid>
		<description>main()
{
int i,j,n,k;
clrscr();
for(i=1;i&lt;=4;i++)
{
for(j=1;j&lt;=4-i;j++)
printf(&quot; &quot;);
for(k=1;k&lt;=i;k++)
printf(&quot;%d&quot;,i);
printf(&quot;n&quot;);
}
getch();
}</description>
		<content:encoded><![CDATA[<p>main()<br />
{<br />
int i,j,n,k;<br />
clrscr();<br />
for(i=1;i&lt;=4;i++)<br />
{<br />
for(j=1;j&lt;=4-i;j++)<br />
printf(&quot; &quot;);<br />
for(k=1;k&lt;=i;k++)<br />
printf(&quot;%d&quot;,i);<br />
printf(&quot;n&quot;);<br />
}<br />
getch();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarakaramji</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27858</link>
		<dc:creator>Tarakaramji</dc:creator>
		<pubDate>Tue, 17 Jan 2012 15:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27858</guid>
		<description>123454321
 1234321
  12321
   121
    1
   121
  12321
 1234321
123454321
Kindly give me the code for this??</description>
		<content:encoded><![CDATA[<p>123454321<br />
 1234321<br />
  12321<br />
   121<br />
    1<br />
   121<br />
  12321<br />
 1234321<br />
123454321<br />
Kindly give me the code for this??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trushar</title>
		<link>http://www.interviewmantra.net/2009/11/10-number-pattern-programs.html/comment-page-2#comment-27824</link>
		<dc:creator>trushar</dc:creator>
		<pubDate>Thu, 05 Jan 2012 12:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/2009/11/10-challenging-number-pattern-programs-in-c/#comment-27824</guid>
		<description>        if n=3 &amp; ch=A

 
                              B
                      C              E 
             H             M              U
                     H              C
                              K


   do this pattern using  fibo ......</description>
		<content:encoded><![CDATA[<p>if n=3 &amp; ch=A</p>
<p>                              B<br />
                      C              E<br />
             H             M              U<br />
                     H              C<br />
                              K</p>
<p>   do this pattern using  fibo &#8230;&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.interviewmantra.net @ 2012-02-10 22:26:21 -->
