<?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 Muhammad Anas	</title>
	<atom:link href="https://anas.pk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://anas.pk/</link>
	<description>API Integrations Expert &#124; Full-Stack web developer</description>
	<lastBuildDate>Sun, 08 Jan 2023 16:03:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by Ayesha Khan		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14769</link>

		<dc:creator><![CDATA[Ayesha Khan]]></dc:creator>
		<pubDate>Sun, 08 Jan 2023 16:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14769</guid>

					<description><![CDATA[write a program to print the following pattern by using nested loop
A
B B
C C C
D D D D
E E E E  E]]></description>
			<content:encoded><![CDATA[<p>write a program to print the following pattern by using nested loop<br />
A<br />
B B<br />
C C C<br />
D D D D<br />
E E E E  E</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by Haseeb Ahmad		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14750</link>

		<dc:creator><![CDATA[Haseeb Ahmad]]></dc:creator>
		<pubDate>Fri, 31 Dec 2021 07:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14750</guid>

					<description><![CDATA[Write a C++ program to print the following pattern using nested loop

ABCD
ABCD
ABCD
ABCD
ABCD
                  please solve this]]></description>
			<content:encoded><![CDATA[<p>Write a C++ program to print the following pattern using nested loop</p>
<p>ABCD<br />
ABCD<br />
ABCD<br />
ABCD<br />
ABCD<br />
                  please solve this</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by jerry mughal		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14749</link>

		<dc:creator><![CDATA[jerry mughal]]></dc:creator>
		<pubDate>Mon, 27 Dec 2021 11:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14749</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14688&quot;&gt;Tooba&lt;/a&gt;.

#include
using namespace std; 
int main()
{
	int i , j , k ;
	cout &#060;&#062; k;

	for (i = 1; i &#060;= k; i++)
	{
		for (j = 1; j &#060;= i; j++)
		{
			cout&#060;&#060;&#034; *&#034;;
		}
		cout &#060;&#060; endl;
	}

	system(&#034;pause&#034;);  
	return 0;
}]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14688">Tooba</a>.</p>
<p>#include<br />
using namespace std;<br />
int main()<br />
{<br />
	int i , j , k ;<br />
	cout &lt;&gt; k;</p>
<p>	for (i = 1; i &lt;= k; i++)<br />
	{<br />
		for (j = 1; j &lt;= i; j++)<br />
		{<br />
			cout&lt;&lt;&quot; *&quot;;<br />
		}<br />
		cout &lt;&lt; endl;<br />
	}</p>
<p>	system(&quot;pause&quot;);<br />
	return 0;<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by jeee		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14748</link>

		<dc:creator><![CDATA[jeee]]></dc:creator>
		<pubDate>Mon, 27 Dec 2021 11:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14748</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-13728&quot;&gt;Nazia&lt;/a&gt;.

#include 
using namespace std;
int main()
{
	int count;
	cout &#060;&#062; count;
	for (int m = 1; m &#060;= count; m++)
	{
		for (int n = 1; n &#060;= count; n++)
		{
			cout &#060;&#060; &#034;*&#034;;
			
		}
		cout &#060;&#060; endl;
	}
	return 0;
}]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-13728">Nazia</a>.</p>
<p>#include<br />
using namespace std;<br />
int main()<br />
{<br />
	int count;<br />
	cout &lt;&gt; count;<br />
	for (int m = 1; m &lt;= count; m++)<br />
	{<br />
		for (int n = 1; n &lt;= count; n++)<br />
		{<br />
			cout &lt;&lt; &quot;*&quot;;</p>
<p>		}<br />
		cout &lt;&lt; endl;<br />
	}<br />
	return 0;<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on C++ Program to Separate Digits of a Positive Integer by Ch Ahmed		</title>
		<link>https://anas.pk/2011/11/22/c-program-to-separate-digits-of-a-positive-integer/#comment-14747</link>

		<dc:creator><![CDATA[Ch Ahmed]]></dc:creator>
		<pubDate>Sun, 21 Nov 2021 11:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://anas.pk/?p=353#comment-14747</guid>

					<description><![CDATA[Write a C++ program that takes input a number greater than 9999 and less than 100000. Then breaks every digit of the number and adds them separately in another variable. Then prints that variable. ( without using anything while,loopetc)]]></description>
			<content:encoded><![CDATA[<p>Write a C++ program that takes input a number greater than 9999 and less than 100000. Then breaks every digit of the number and adds them separately in another variable. Then prints that variable. ( without using anything while,loopetc)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by Ashmal		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14742</link>

		<dc:creator><![CDATA[Ashmal]]></dc:creator>
		<pubDate>Tue, 25 May 2021 07:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14742</guid>

					<description><![CDATA[Kindly solve this, Write a program that can able to print the following pattern by using nested Loops:
                         
                   5  *  3  *  1
                       *  3  *  1
                           3  *  1
                               *  1
                                   *]]></description>
			<content:encoded><![CDATA[<p>Kindly solve this, Write a program that can able to print the following pattern by using nested Loops:</p>
<p>                   5  *  3  *  1<br />
                       *  3  *  1<br />
                           3  *  1<br />
                               *  1<br />
                                   *</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to get permalink of a post on Facebook? by How do I get a permalink on Facebook? - Famuse : #1 Models, Actors, Agencies, Photographers &#38; Talents Platform in the MENA		</title>
		<link>https://anas.pk/2011/09/17/how-to-get-permalink-of-a-post-on-facebook/#comment-14741</link>

		<dc:creator><![CDATA[How do I get a permalink on Facebook? - Famuse : #1 Models, Actors, Agencies, Photographers &#38; Talents Platform in the MENA]]></dc:creator>
		<pubDate>Fri, 30 Apr 2021 02:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://anas.pk/?p=325#comment-14741</guid>

					<description><![CDATA[[&#8230;] Ref 2 [&#8230;]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Ref 2 [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by rohullah bakhtary		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14740</link>

		<dc:creator><![CDATA[rohullah bakhtary]]></dc:creator>
		<pubDate>Sun, 04 Apr 2021 10:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14740</guid>

					<description><![CDATA[Thank you very much!
I wanted to ask if there is a code in c++ to output such a thing:
0 1 2 3 4
1 2 3 4 5
2 3 4 5 6
3 4 5 6 7
4 5 6 7 8]]></description>
			<content:encoded><![CDATA[<p>Thank you very much!<br />
I wanted to ask if there is a code in c++ to output such a thing:<br />
0 1 2 3 4<br />
1 2 3 4 5<br />
2 3 4 5 6<br />
3 4 5 6 7<br />
4 5 6 7 8</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by i1z2z3a4@@		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14739</link>

		<dc:creator><![CDATA[i1z2z3a4@@]]></dc:creator>
		<pubDate>Fri, 02 Apr 2021 09:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14739</guid>

					<description><![CDATA[Write a C++ program using nested for loop to print the following pyramid.


        *
       ***
     *****
   *******
  *********
   *******
    *****
      ***
        *]]></description>
			<content:encoded><![CDATA[<p>Write a C++ program using nested for loop to print the following pyramid.</p>
<p>        *<br />
       ***<br />
     *****<br />
   *******<br />
  *********<br />
   *******<br />
    *****<br />
      ***<br />
        *</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Very Simple C++ programs &#8211; Nested loops Demonstration/Examples by AbdUllah Elnomany		</title>
		<link>https://anas.pk/2011/03/22/very-simple-c-programs-nested-loops-demonstrationexamples/#comment-14738</link>

		<dc:creator><![CDATA[AbdUllah Elnomany]]></dc:creator>
		<pubDate>Fri, 12 Mar 2021 17:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://anas.cz.cc/?p=215#comment-14738</guid>

					<description><![CDATA[pattern1:
1 
12
123
1234
12345
123456
pattern2;
123456
12345
1234
123
12
1]]></description>
			<content:encoded><![CDATA[<p>pattern1:<br />
1<br />
12<br />
123<br />
1234<br />
12345<br />
123456<br />
pattern2;<br />
123456<br />
12345<br />
1234<br />
123<br />
12<br />
1</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
