<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>triangle numbers</title>
	<atom:link href="https://www.skellainnovations.com/tag/triangle-numbers/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.skellainnovations.com</link>
	<description>Innovative Ideas and Tutorials Portal</description>
	<lastBuildDate>Tue, 05 Nov 2019 13:56:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.skellainnovations.com/wp-content/uploads/2015/09/cropped-Untitled-1-32x32.png</url>
	<title>triangle numbers</title>
	<link>https://www.skellainnovations.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>C++ Programming Problem #2 : Descending Numbers (Rotated Half Triangle Shape)</title>
		<link>https://www.skellainnovations.com/programming-descending-triangle/</link>
					<comments>https://www.skellainnovations.com/programming-descending-triangle/#comments</comments>
		
		<dc:creator><![CDATA[Kel Ragonton]]></dc:creator>
		<pubDate>Sun, 04 Oct 2015 06:02:00 +0000</pubDate>
				<category><![CDATA[CPP-Breakdown]]></category>
		<category><![CDATA[c++ programming]]></category>
		<category><![CDATA[descending numbers]]></category>
		<category><![CDATA[descending order example]]></category>
		<category><![CDATA[triangle numbers]]></category>
		<guid isPermaLink="false">http://www.skellainnovations.com/c-programming-problem-1-numbers-to-text-conversion-copy/</guid>

					<description><![CDATA[<p>Problem # 2: Descending Numbers (Rotated Half Triangle Shape) //---www.skellainnovations.com---// #include &#60;iostream.h&#62; #include &#60;conio.h&#62; #define ct cout void dec(int x); int main() { clrscr(); int x; ct&#60;&#60;"Enter a Number: "; cin&#62;&#62;x; dec(x); getch(); return 0; } void dec(int x) { int a,b; for(a=x;a&#62;=1;a--) { for(b=a;b&#62;=1;b--) { ct&#60;&#60;b; } ct&#60;&#60;endl; } } //---www.skellainnovations.com---//   Breakdown of [&#8230;]</p>
The post <a href="https://www.skellainnovations.com/programming-descending-triangle/">C++ Programming Problem #2 : Descending Numbers (Rotated Half Triangle Shape)</a> first appeared on <a href="https://www.skellainnovations.com">Skella Innovations</a>.]]></description>
		
					<wfw:commentRss>https://www.skellainnovations.com/programming-descending-triangle/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
