<?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: C++ program to multiply two numbers without using multiplication operator	</title>
	<atom:link href="https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Wed, 25 Feb 2015 15:54:19 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: rapala bass fishing xbox		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-84162</link>

		<dc:creator><![CDATA[rapala bass fishing xbox]]></dc:creator>
		<pubDate>Wed, 25 Feb 2015 15:54:19 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-84162</guid>

					<description><![CDATA[I really like reading through a post that will make people think.
Also, many thanks for allowing for me to comment!]]></description>
			<content:encoded><![CDATA[<p>I really like reading through a post that will make people think.<br />
Also, many thanks for allowing for me to comment!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: marc		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-10062</link>

		<dc:creator><![CDATA[marc]]></dc:creator>
		<pubDate>Mon, 02 Sep 2013 00:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-10062</guid>

					<description><![CDATA[while loop?]]></description>
			<content:encoded><![CDATA[<p>while loop?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: periyasamy		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-9802</link>

		<dc:creator><![CDATA[periyasamy]]></dc:creator>
		<pubDate>Wed, 29 May 2013 14:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-9802</guid>

					<description><![CDATA[also
for(i=0;i&#060;=a;i+)
{
for(j=0;j&#060;=b;j++)
{
count++;
}
}
printf(&#034;%d&#034;,count);]]></description>
			<content:encoded><![CDATA[<p>also<br />
for(i=0;i&lt;=a;i+)<br />
{<br />
for(j=0;j&lt;=b;j++)<br />
{<br />
count++;<br />
}<br />
}<br />
printf(&quot;%d&quot;,count);</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Adesh suryan		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-9800</link>

		<dc:creator><![CDATA[Adesh suryan]]></dc:creator>
		<pubDate>Mon, 27 May 2013 06:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-9800</guid>

					<description><![CDATA[Hi, 
    just update the For loop  condition 
#include
#include
void main ()
{
int a,b,i,temp=0;
clrscr();
cout&#060;&#062;a&#062;&#062;b;
for(i=1;i&#060;b;i++)
{
temp=temp+a;
}
cout&#060;&#060;endl&#060;&#060;&#034;Result are:: &#034;&#060;&#060;temp;
getch();
}]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
    just update the For loop  condition<br />
#include<br />
#include<br />
void main ()<br />
{<br />
int a,b,i,temp=0;<br />
clrscr();<br />
cout&lt;&gt;a&gt;&gt;b;<br />
for(i=1;i&lt;b;i++)<br />
{<br />
temp=temp+a;<br />
}<br />
cout&lt;&lt;endl&lt;&lt;&quot;Result are:: &quot;&lt;&lt;temp;<br />
getch();<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nikhil		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-8911</link>

		<dc:creator><![CDATA[Nikhil]]></dc:creator>
		<pubDate>Mon, 17 Sep 2012 11:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-8911</guid>

					<description><![CDATA[#include
#include
{
clrscr();
int a,b,c;
cout&#060;&#062;a&#062;&#062;b;
c=a*b;
cout&#060;&#060;&#034;The answer is: &#034;&#060;&#060;c;
getch();
}]]></description>
			<content:encoded><![CDATA[<p>#include<br />
#include<br />
{<br />
clrscr();<br />
int a,b,c;<br />
cout&lt;&gt;a&gt;&gt;b;<br />
c=a*b;<br />
cout&lt;&lt;&quot;The answer is: &quot;&lt;&lt;c;<br />
getch();<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Swapna		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-multiply-two-numbers-without-using-multiplication-operator/comment-page-1/#comment-3241</link>

		<dc:creator><![CDATA[Swapna]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 17:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1130#comment-3241</guid>

					<description><![CDATA[It will not work
1.If a is -ve
2.b is -ve]]></description>
			<content:encoded><![CDATA[<p>It will not work<br />
1.If a is -ve<br />
2.b is -ve</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
