

<rss version="2.0"
	xmlns:atom="http://www.w3.org/2005/Atom" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		
	<channel>
		<title>RSS Feeds :: DEVPPL - Forums > Script-archive</title>
	<!--<atom:link href="http://www.devppl.com/forum" rel="self" type="application/rss+xml" />-->
		<description>TOGETHER WE ARE THE BEST</description>
		<link>http://www.devppl.com/forum</link>
		<language>en-gb</language>
		<pubDate>Tue, 17 Aug 2004 14:07:13 +0100</pubDate>
		<lastBuildDate>Mon, 23 Nov 2009 23:31:22 +0000</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MSSTI v0.0.1 - (C) 2008 leviatan21 - http://www.mssti.com/</generator>
		<copyright>Copyright : (c) RSS Feeds :: DEVPPL - Tue, 17 Aug 2004 14:07:13 +0100</copyright>
		<dc:creator>webmaster@devppl.com (DEVPPL)</dc:creator>

		<image>
			<title>RSS Feeds :: DEVPPL - Forums > Script-archive</title>
			<url>http://www.devppl.com/forum/styles/DEVPPL-v2/imageset/site_logo.gif</url>
			<link>http://www.devppl.com/forum</link>
		</image>
		<ttl>60</ttl>
		
		<item>
			<title>Pyramid</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=26929#p26929</link>
				<description><![CDATA[/*Pyramid.cpp.
<br />This program creats a
<br />Pyramid upto N steps
<br />for  example...
<br />3 wil give
<br />    *
<br />  ***
<br />*****
<br />
<br />*/
<br />
<br />#include<iostream.h>
<br />#include<ctype.h>
<br />
<br />void main()
<br />{
<br />	int n;
<br />	char opp;
<br />	cout<<"*************** Ultimate Pyramid ***************\n\n";
<br />	do
<br />	{
<br />
<br />	cout<<"Enter no. of Steps : ";
<br />	cin>>n;
<br />	for(int i=0; i<n; i++)
<br />	{
<br />		cout<<"\t";
<br />		for(int k=0;k<=n-i;k++)
<br />			cout<<" ";
<br />		for(int j=0; j<=i;j++)
<br />			cout<<"*";
<br />		for(int l=0; l<i; l++)
<br />			cout<<"*";
<br />		cout<<endl;
<br />	}
<br />		cout<<"\nGenerate More (Y-N) : ";
<br />		cin>>opp;
<br />		opp=toupper(opp);
<br />	}while(opp!='N');
<br />}<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=4790">sevenaces</a> &bull; on Thu May 10, 2007 7:12 pm &bull; Replies 0 &bull; Views 1456</p><hr />]]></description>
					<content:encoded><![CDATA[/*Pyramid.cpp.
<br />This program creats a
<br />Pyramid upto N steps
<br />for  example...
<br />3 wil give
<br />    *
<br />  ***
<br />*****
<br />
<br />*/
<br />
<br />#include<iostream.h>
<br />#include<ctype.h>
<br />
<br />void main()
<br />{
<br />	int n;
<br />	char opp;
<br />	cout<<"*************** Ultimate Pyramid ***************\n\n";
<br />	do
<br />	{
<br />
<br />	cout<<"Enter no. of Steps : ";
<br />	cin>>n;
<br />	for(int i=0; i<n; i++)
<br />	{
<br />		cout<<"\t";
<br />		for(int k=0;k<=n-i;k++)
<br />			cout<<" ";
<br />		for(int j=0; j<=i;j++)
<br />			cout<<"*";
<br />		for(int l=0; l<i; l++)
<br />			cout<<"*";
<br />		cout<<endl;
<br />	}
<br />		cout<<"\nGenerate More (Y-N) : ";
<br />		cin>>opp;
<br />		opp=toupper(opp);
<br />	}while(opp!='N');
<br />}]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=38"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[4790]]></dc:creator>
			<dc:date>2007-05-10T19:12:47+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=26929#p26929</guid>
		</item>
			<item>
			<title>Fibonacci Series!</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=26928#p26928</link>
				<description><![CDATA[<blockquote class="uncited"><div><br />//		Fibonacci Series.cpp<br
/>//		The following program prints<br />//		the Fibonacci Series upto N
numbers.<br /><br />#include<iostream.h><br />#include<ctype.h><br /><br
/>void main()<br />{<br />	int t1=1, t2=1, sum, n;<br />	char opp;<br
/>	cout<<"**************** Fibonacci Generator ****************\n\n";<br
/>	do<br />	{<br /><br />		cout<<"Enter the number of terms : ";<br
/>		cin>>n;<br />		cout<<"The series is\n";<br />		for(int i=0;i<n;i++)<br
/>		{<br />			cout<<t1<<", ";<br />			sum=t1+t2;<br />			t1=t2;<br
/>			t2=sum;<br />		}<br />		cout<<"\b\b.\nGenerate another (Y-N) : ";<br
/>		cin>>opp;<br />		opp=toupper(opp);<br />	}while(opp!='N');<br />		<br
/>}</div></blockquote><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=4790">sevenaces</a> &bull; on Thu May 10, 2007 7:11 pm &bull; Replies 0 &bull; Views 1195</p><hr />]]></description>
					<content:encoded><![CDATA[<blockquote class="uncited"><div><br />//		Fibonacci Series.cpp<br
/>//		The following program prints<br />//		the Fibonacci Series upto N
numbers.<br /><br />#include<iostream.h><br />#include<ctype.h><br /><br
/>void main()<br />{<br />	int t1=1, t2=1, sum, n;<br />	char opp;<br
/>	cout<<"**************** Fibonacci Generator ****************\n\n";<br
/>	do<br />	{<br /><br />		cout<<"Enter the number of terms : ";<br
/>		cin>>n;<br />		cout<<"The series is\n";<br />		for(int i=0;i<n;i++)<br
/>		{<br />			cout<<t1<<", ";<br />			sum=t1+t2;<br />			t1=t2;<br
/>			t2=sum;<br />		}<br />		cout<<"\b\b.\nGenerate another (Y-N) : ";<br
/>		cin>>opp;<br />		opp=toupper(opp);<br />	}while(opp!='N');<br />		<br
/>}</div></blockquote>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=38"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[4790]]></dc:creator>
			<dc:date>2007-05-10T19:11:19+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=26928#p26928</guid>
		</item>
			<item>
			<title>A password program!</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=26927#p26927</link>
				<description><![CDATA[  I read this one: "http://www.devppl.com/forum/simple-c-code-vt599.html"
<br />
<br />Tht ws really borin!
<br />The password seems normal! no nothing like ******...
<br />
<br />I made my own! How is it?
<br /><blockquote class="uncited"><div>  <br />#include<iostream.h><br
/>#include<conio.h><br />#include<stdio.h><br />#include<string.h><br /><br
/>void main()<br />{<br />	pass:<br />	charp[10] ;<br />	puts("Please set a
password.\n");<br />	puts("Enter Your Password : ");<br />	chara[10] ;<br
/>	for(int i=0;;i++)<br />	{<br />		p[i]=getch();<br />		if(p[i]==13)<br
/>		{<br />			puts("\b");<br />			break;<br />		}<br />		putch('*');<br
/>	}<br />	p[i] ='\0';<br /><br />	puts("\nConfirm Password : ");<br
/>	for(i=0;a[i] !='\0';i++)<br />	{<br />		a[i]=getch();<br
/>		if(a[i]==13)<br />		{<br />			break;<br />		}<br />		putch('*');<br
/>	}<br />	a[i] ='\0';<br />	int f=0;<br />	<br
/>	for(i=0;i<strlen(a);i++)<br />	{<br />		if(a[i]!=p[i] )<br />			f=1;<br
/>	}<br />	if(f||strlen(a)!=strlen(p))<br />	{<br />		puts("\n\nPassword
did not match.Please reset. ");<br />		goto pass;<br />	}<br />	else<br
/>		puts("\n\nPassword Accepted");<br />            puts("\n\nPress any key
to exit");<br />        </div></blockquote>...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=4790">sevenaces</a> &bull; on Thu May 10, 2007 7:09 pm &bull; Replies 0 &bull; Views 1356</p><hr />]]></description>
					<content:encoded><![CDATA[  I read this one: "http://www.devppl.com/forum/simple-c-code-vt599.html"
<br />
<br />Tht ws really borin!
<br />The password seems normal! no nothing like ******...
<br />
<br />I made my own! How is it?
<br /><blockquote class="uncited"><div>  <br />#include<iostream.h><br
/>#include<conio.h><br />#include<stdio.h><br />#include<string.h><br /><br
/>void main()<br />{<br />	pass:<br />	charp[10] ;<br />	puts("Please set a
password.\n");<br />	puts("Enter Your Password : ");<br />	chara[10] ;<br
/>	for(int i=0;;i++)<br />	{<br />		p[i]=getch();<br />		if(p[i]==13)<br
/>		{<br />			puts("\b");<br />			break;<br />		}<br />		putch('*');<br
/>	}<br />	p[i] ='\0';<br /><br />	puts("\nConfirm Password : ");<br
/>	for(i=0;a[i] !='\0';i++)<br />	{<br />		a[i]=getch();<br
/>		if(a[i]==13)<br />		{<br />			break;<br />		}<br />		putch('*');<br
/>	}<br />	a[i] ='\0';<br />	int f=0;<br />	<br
/>	for(i=0;i<strlen(a);i++)<br />	{<br />		if(a[i]!=p[i] )<br />			f=1;<br
/>	}<br />	if(f||strlen(a)!=strlen(p))<br />	{<br />		puts("\n\nPassword
did not match.Please reset. ");<br />		goto pass;<br />	}<br />	else<br
/>		puts("\n\nPassword Accepted");<br />            puts("\n\nPress any key
to exit");<br />        </div></blockquote>...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=38"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[4790]]></dc:creator>
			<dc:date>2007-05-10T19:09:02+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=26927#p26927</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=17688#p17688</link>
				<description><![CDATA[I feel kind of stupid for asking this question. HadI written this program I
would have begun with:
<br />
<br />#include<iostream>
<br />using namespace std;
<br />
<br />Is there a rigth or wrong way? I thought for sure your code would
generate an error message, though my compiler accutally doesn't protest
more than a little.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=5416">Vankelmod</a> &bull; on Wed Mar 16, 2005 1:06 am &bull; Replies 1 &bull; Views 2402</p><hr />]]></description>
					<content:encoded><![CDATA[I feel kind of stupid for asking this question. HadI written this program I
would have begun with:
<br />
<br />#include<iostream>
<br />using namespace std;
<br />
<br />Is there a rigth or wrong way? I thought for sure your code would
generate an error message, though my compiler accutally doesn't protest
more than a little.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=38"><![CDATA[Script-archive]]></category>
			<dc:creator><![CDATA[5416]]></dc:creator>
			<dc:date>2006-11-13T17:34:10+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=17688#p17688</guid>
		</item>
	
	</channel>
</rss>