

<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 > C and C++ Forum</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 12:46:02 +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 > C and C++ Forum</title>
			<url>http://www.devppl.com/forum/styles/DEVPPL/imageset/site_logo.gif</url>
			<link>http://www.devppl.com/forum</link>
		</image>
		<ttl>60</ttl>
		
		<item>
			<title>C++ help</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55638#p55638</link>
				<description><![CDATA[i need help with C++ programs will pay by paypal to someone who is familiar
with C++<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=45728">crocodal21</a> &bull; on Thu Nov 19, 2009 5:28 pm &bull; Replies 0 &bull; Views 25</p><hr />]]></description>
					<content:encoded><![CDATA[i need help with C++ programs will pay by paypal to someone who is familiar
with C++]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[45728]]></dc:creator>
			<dc:date>2009-11-19T16:28:57+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55638#p55638</guid>
		</item>
			<item>
			<title>Re: i have a serious problem, you can help easily</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=55181#p55181</link>
				<description><![CDATA[I'm not sure what your programming in I get the feeling its cpp with visual
studio or something of which I haven't a clue about, but when programming
games in SDL for movement left to right theirs usually an x movement
varible which depending on how far you want it to move is 1+<br /><br />now
if you want it to move right to left its the same except you find the
varible which you wish to change and replace its positive number with a
negative, -1 or -15 yet again depends on how much you want it to move.<br
/><br />Hope this helps and sorry I can't help any further<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Wed Aug 26, 2009 11:35 am &bull; Replies 1 &bull; Views 173</p><hr />]]></description>
					<content:encoded><![CDATA[I'm not sure what your programming in I get the feeling its cpp with visual
studio or something of which I haven't a clue about, but when programming
games in SDL for movement left to right theirs usually an x movement
varible which depending on how far you want it to move is 1+<br /><br />now
if you want it to move right to left its the same except you find the
varible which you wish to change and replace its positive number with a
negative, -1 or -15 yet again depends on how much you want it to move.<br
/><br />Hope this helps and sorry I can't help any further]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2009-11-01T17:17:22+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=55181#p55181</guid>
		</item>
			<item>
			<title>Re: Projectiles</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=53152#p53152</link>
				<description><![CDATA[I have worked my little problem above, and am just writing just post how I
did it just encase anyone else gets a similar problem.<br /><br />Instead
of using a two dimensional array:<br /><br /><span style="font-weight:
bold">int myArray[50][50];</span><br /><br />I created an array of a
structure I built:<br /><br /><span style="font-weight: bold">struct
projectiles{<br />   int onoff;<br />   int x;<br />   int y;<br />   int
xm<br />   int ym;<br />   int width;<br />   int height;<br />}
everyProjectile[MAX_BULLETS];</span><br /><br />So them I could still use
all my equations, I just had to replace all: <br />with smallLoop being a
int I was using along side my for(loops)<br /><br />replace:
myArray[smallLoop][0]<br />with :     everyProjectile[smallLoop].onoff<br
/><br />I still have no idea why the 2Darray never worked but mneh<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Sun Aug 16, 2009 4:29 pm &bull; Replies 1 &bull; Views 75</p><hr />]]></description>
					<content:encoded><![CDATA[I have worked my little problem above, and am just writing just post how I
did it just encase anyone else gets a similar problem.<br /><br />Instead
of using a two dimensional array:<br /><br /><span style="font-weight:
bold">int myArray[50][50];</span><br /><br />I created an array of a
structure I built:<br /><br /><span style="font-weight: bold">struct
projectiles{<br />   int onoff;<br />   int x;<br />   int y;<br />   int
xm<br />   int ym;<br />   int width;<br />   int height;<br />}
everyProjectile[MAX_BULLETS];</span><br /><br />So them I could still use
all my equations, I just had to replace all: <br />with smallLoop being a
int I was using along side my for(loops)<br /><br />replace:
myArray[smallLoop][0]<br />with :     everyProjectile[smallLoop].onoff<br
/><br />I still have no idea why the 2Darray never worked but mneh]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2009-08-17T18:22:01+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=53152#p53152</guid>
		</item>
			<item>
			<title>search by using file format</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52714#p52714</link>
				<description><![CDATA[Hi and greeting to all<br /><br />I have a small problem and i hope someone
can help me through ur fruitful forums here, and please excuse my weak
language.<br /><br />I need to design a program that has some functionality
intends to search for files using their formats. I have been advised to use
the C++ WinAPI to be able using some function from Windows.<br /><br />I do
need any help to make the program search for all files that has the .INI
format, as an example. After gathering these files i need them somehow to
process some operations on them that i will handle later.<br /><br />I
appreciate ur cooperation.<br /><br />My kind regards..<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44331">SIQ</a> &bull; on Mon Jul 27, 2009 7:22 pm &bull; Replies 0 &bull; Views 62</p><hr />]]></description>
					<content:encoded><![CDATA[Hi and greeting to all<br /><br />I have a small problem and i hope someone
can help me through ur fruitful forums here, and please excuse my weak
language.<br /><br />I need to design a program that has some functionality
intends to search for files using their formats. I have been advised to use
the C++ WinAPI to be able using some function from Windows.<br /><br />I do
need any help to make the program search for all files that has the .INI
format, as an example. After gathering these files i need them somehow to
process some operations on them that i will handle later.<br /><br />I
appreciate ur cooperation.<br /><br />My kind regards..]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[44331]]></dc:creator>
			<dc:date>2009-07-27T19:22:14+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52714#p52714</guid>
		</item>
			<item>
			<title>Re: how to solve it ?</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=52601#p52601</link>
				<description><![CDATA[Hi again cooop , how r u?<br /><br />i think if you visit this site they
would help you <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":)"
title="Smile" /><br /><br />q8programmer.com<br /><br />take care  <img
src="http://www.devppl.com/forum/images/smilies//icon_razz.gif" alt=":P"
title="Razz" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=44250">mimkst</a> &bull; on Wed Jul 15, 2009 12:17 pm &bull; Replies 1 &bull; Views 82</p><hr />]]></description>
					<content:encoded><![CDATA[Hi again cooop , how r u?<br /><br />i think if you visit this site they
would help you <img
src="http://www.devppl.com/forum/images/smilies//icon_smile.gif" alt=":)"
title="Smile" /><br /><br />q8programmer.com<br /><br />take care  <img
src="http://www.devppl.com/forum/images/smilies//icon_razz.gif" alt=":P"
title="Razz" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[44250]]></dc:creator>
			<dc:date>2009-07-20T11:57:02+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=52601#p52601</guid>
		</item>
			<item>
			<title>Re: CPP / SDL ---- Loads screen but everything is red</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=51832#p51832</link>
				<description><![CDATA[Thanks if you looked through the code, just encase anyone looks through
still and can't find the problem, its to do with this line near the
bottom<br /><br /><span style="font-style: italic">apply_surface((j*25),
(i*25), example, screen, &clip[mapcoloring[j][i]]);</span><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Sat May 16, 2009 7:50 pm &bull; Replies 1 &bull; Views 247</p><hr />]]></description>
					<content:encoded><![CDATA[Thanks if you looked through the code, just encase anyone looks through
still and can't find the problem, its to do with this line near the
bottom<br /><br /><span style="font-style: italic">apply_surface((j*25),
(i*25), example, screen, &clip[mapcoloring[j][i]]);</span>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2009-05-16T21:47:14+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=51832#p51832</guid>
		</item>
			<item>
			<title>Re: L. SYSTEM</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=51179#p51179</link>
				<description><![CDATA[i dont have no idea =(<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20641">Suffer</a> &bull; on Tue Apr 14, 2009 4:58 pm &bull; Replies 1 &bull; Views 193</p><hr />]]></description>
					<content:encoded><![CDATA[i dont have no idea =(]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[20641]]></dc:creator>
			<dc:date>2009-04-15T07:39:08+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=51179#p51179</guid>
		</item>
			<item>
			<title>Re: Huffman Decommpression without frequency table</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=50700#p50700</link>
				<description><![CDATA[O also I am almost complete on the encrypting/decrypting program, so once
that part of the code is finished I will post it on here, GPL Licensing ,
and after that I will start to blend in the without frequency table
decrypting. Its a long shot but fingers crossed.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Mon Mar 23, 2009 6:46 pm &bull; Replies 1 &bull; Views 756</p><hr />]]></description>
					<content:encoded><![CDATA[O also I am almost complete on the encrypting/decrypting program, so once
that part of the code is finished I will post it on here, GPL Licensing ,
and after that I will start to blend in the without frequency table
decrypting. Its a long shot but fingers crossed.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2009-03-23T17:48:36+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=50700#p50700</guid>
		</item>
			<item>
			<title>Re: Open source my OIOIC, a new object-oriented mech. for the C.</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=50445#p50445</link>
				<description><![CDATA[I have packed the English version individually.<br />Please download the
"OIOIC-Primer-2nd-Edition-English.tar.gz". (the English version of << OIOIC
Primer >> ) <br />"http://code.google.com/p/oioic/downloads/list"
onclick="this.target='_blank';" rel="nofollow"<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=27498">pervise.zhao</a> &bull; on Wed Mar 11, 2009 7:49 am &bull; Replies 1 &bull; Views 142</p><hr />]]></description>
					<content:encoded><![CDATA[I have packed the English version individually.<br />Please download the
"OIOIC-Primer-2nd-Edition-English.tar.gz". (the English version of << OIOIC
Primer >> ) <br />"http://code.google.com/p/oioic/downloads/list"
onclick="this.target='_blank';" rel="nofollow"]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[27498]]></dc:creator>
			<dc:date>2009-03-12T01:50:01+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=50445#p50445</guid>
		</item>
			<item>
			<title>TIFF  Tags Information</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=50156#p50156</link>
				<description><![CDATA[Dear Experts:-<br /><br />              I am willing to create tiff file
parser. My concern is to know what are the necessary tags without which a
valid Tiff file can't be created .I am willing to parse only those which
are necessary to parse. if anybody have work earlier in such format then
please help me in the same .Means in simple words which tags need to be
parsed and which can be left intact.<br /><br /><br />Thanks;<br />Vikas<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=24059">vikasmailsu</a> &bull; on Tue Feb 24, 2009 2:52 pm &bull; Replies 0 &bull; Views 158</p><hr />]]></description>
					<content:encoded><![CDATA[Dear Experts:-<br /><br />              I am willing to create tiff file
parser. My concern is to know what are the necessary tags without which a
valid Tiff file can't be created .I am willing to parse only those which
are necessary to parse. if anybody have work earlier in such format then
please help me in the same .Means in simple words which tags need to be
parsed and which can be left intact.<br /><br /><br />Thanks;<br />Vikas]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[24059]]></dc:creator>
			<dc:date>2009-02-24T13:52:13+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=50156#p50156</guid>
		</item>
			<item>
			<title>Re: RLE . .</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=50155#p50155</link>
				<description><![CDATA[run length encoding in which where we store reptition of character with
count i.e how many times such a character exist.  e.g<br /><br
/>aaaaaaaaaaaagggggggggg<br /><br />Using RLE:-12a10g<br /><br />It is
various types..<br /><br />It is basic conecpts.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=24059">vikasmailsu</a> &bull; on Mon Oct 16, 2006 7:17 am &bull; Replies 2 &bull; Views 1440</p><hr />]]></description>
					<content:encoded><![CDATA[run length encoding in which where we store reptition of character with
count i.e how many times such a character exist.  e.g<br /><br
/>aaaaaaaaaaaagggggggggg<br /><br />Using RLE:-12a10g<br /><br />It is
various types..<br /><br />It is basic conecpts.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[24059]]></dc:creator>
			<dc:date>2009-02-24T13:48:18+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=50155#p50155</guid>
		</item>
			<item>
			<title>C#and .Net</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=50053#p50053</link>
				<description><![CDATA[WizData Systems, Inc is a Microsoft Partner in New Jersey. We are asking
VB, .Net and related developers if they are considering the switch to .Net
and some similar questions.<br /><br />Here is the link to the free survey
we put together<br
/>"http://www.surveymonkey.com/s.aspx?sm=4fgTWG0_2f6rjRSjoOndzBYA_3d_3d"
onclick="this.target='_blank';" rel="nofollow"<br /><br />We will post the
results on this forum and related forums once we compile some more data<br
/><br />Thanks everyone<br />-Mike-<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=21212">WizData</a> &bull; on Mon Feb 16, 2009 11:27 pm &bull; Replies 0 &bull; Views 118</p><hr />]]></description>
					<content:encoded><![CDATA[WizData Systems, Inc is a Microsoft Partner in New Jersey. We are asking
VB, .Net and related developers if they are considering the switch to .Net
and some similar questions.<br /><br />Here is the link to the free survey
we put together<br
/>"http://www.surveymonkey.com/s.aspx?sm=4fgTWG0_2f6rjRSjoOndzBYA_3d_3d"
onclick="this.target='_blank';" rel="nofollow"<br /><br />We will post the
results on this forum and related forums once we compile some more data<br
/><br />Thanks everyone<br />-Mike-]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[21212]]></dc:creator>
			<dc:date>2009-02-16T22:27:03+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=50053#p50053</guid>
		</item>
			<item>
			<title>parser project needs C++ programmer</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=49778#p49778</link>
				<description><![CDATA[I'd like to know if anyone of you would be interested in being payed ($$$)
to program a BNF like parser.<br />Intermediate to advanced programmer
skills required because the project deals allot with pointers and memory
updates and<br />inter-mixes c/c++/perl code. Anyone interested visit
"http://www.angelfire.com/cppcode/blog/spec_0.txt"
onclick="this.target='_blank';" rel="nofollow" for futher details<br /><br
/><!-- e --><a href="mailto:cvv3@yahoo.com">cvv3@yahoo.com</a><!-- e --><br
/> <img src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif"
alt=":D" title="Very Happy" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20675">cpp19user</a> &bull; on Thu Feb 05, 2009 2:16 am &bull; Replies 0 &bull; Views 230</p><hr />]]></description>
					<content:encoded><![CDATA[I'd like to know if anyone of you would be interested in being payed ($$$)
to program a BNF like parser.<br />Intermediate to advanced programmer
skills required because the project deals allot with pointers and memory
updates and<br />inter-mixes c/c++/perl code. Anyone interested visit
"http://www.angelfire.com/cppcode/blog/spec_0.txt"
onclick="this.target='_blank';" rel="nofollow" for futher details<br /><br
/><!-- e --><a href="mailto:cvv3@yahoo.com">cvv3@yahoo.com</a><!-- e --><br
/> <img src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif"
alt=":D" title="Very Happy" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[20675]]></dc:creator>
			<dc:date>2009-02-05T01:16:14+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=49778#p49778</guid>
		</item>
			<item>
			<title>Re: Anyone looking for work?</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=49727#p49727</link>
				<description><![CDATA[Suffer, how much Delphi experience do you have? I have a Delphi Team leader
position coming live this week. <br /><br />Cheers <br />Jason<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20835">reni00</a> &bull; on Sun Feb 01, 2009 3:08 am &bull; Replies 3 &bull; Views 352</p><hr />]]></description>
					<content:encoded><![CDATA[Suffer, how much Delphi experience do you have? I have a Delphi Team leader
position coming live this week. <br /><br />Cheers <br />Jason]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[20835]]></dc:creator>
			<dc:date>2009-02-02T23:22:47+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=49727#p49727</guid>
		</item>
			<item>
			<title>help for c++ code for recognizing a valid c++ identifier?</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=49441#p49441</link>
				<description><![CDATA[ What is the c++ code for recognizing a valid c++ identifier? there are
some conditions to be followed:<br />1. it should start with a letter or an
underscore<br />2. no two succeeding underscore.<br />3.the length of the
identifier is from 1 to 8 characters only.<br />4. a single underscore
inputted as an identifier is invalid.<br /><br />here are the codes that i
coded that are very much familiar with the problem. all i need is to
combine them as one code that solves the problem above.:<br /><br />/*THIS
IS A SIMPLE CODE TO RECOGNIZE AN IDENTIFIER*/<br />#include <stdio.h><br
/>#include <ctype.h><br />#include <iostream><br />#include <stdlib.h><br
/>#include <time.h><br />#include <conio.h><br />#include <math.h><br
/>using namespace std;<br /><br />void error();<br />/*THIS IS A SIMPLE
CODE TO RECOGNIZE AN IDENTIFIER*/<br />char in;<br />void<br />error()<br
/>{<br /><br />in=getchar();<br /><br /> if(isalpha(in))<br /> 
in=getchar();<br /> else<br /> {error();}<br /> <br /> <br />
while(isalpha(in)||isdigit(in))<br />  in=getchar();<br /><br />}<br
/>int<br />main ()<br />{<br />  <br />  <br />  error();<br />  <br /> 
{<br />  getch();<br />  }<br />}<br /><br />;;;;;;;;;;;;;;<br />...<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20701">deerlittle7</a> &bull; on Sat Jan 24, 2009 1:06 pm &bull; Replies 0 &bull; Views 459</p><hr />]]></description>
					<content:encoded><![CDATA[ What is the c++ code for recognizing a valid c++ identifier? there are
some conditions to be followed:<br />1. it should start with a letter or an
underscore<br />2. no two succeeding underscore.<br />3.the length of the
identifier is from 1 to 8 characters only.<br />4. a single underscore
inputted as an identifier is invalid.<br /><br />here are the codes that i
coded that are very much familiar with the problem. all i need is to
combine them as one code that solves the problem above.:<br /><br />/*THIS
IS A SIMPLE CODE TO RECOGNIZE AN IDENTIFIER*/<br />#include <stdio.h><br
/>#include <ctype.h><br />#include <iostream><br />#include <stdlib.h><br
/>#include <time.h><br />#include <conio.h><br />#include <math.h><br
/>using namespace std;<br /><br />void error();<br />/*THIS IS A SIMPLE
CODE TO RECOGNIZE AN IDENTIFIER*/<br />char in;<br />void<br />error()<br
/>{<br /><br />in=getchar();<br /><br /> if(isalpha(in))<br /> 
in=getchar();<br /> else<br /> {error();}<br /> <br /> <br />
while(isalpha(in)||isdigit(in))<br />  in=getchar();<br /><br />}<br
/>int<br />main ()<br />{<br />  <br />  <br />  error();<br />  <br /> 
{<br />  getch();<br />  }<br />}<br /><br />;;;;;;;;;;;;;;<br />...]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[20701]]></dc:creator>
			<dc:date>2009-01-24T12:06:42+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=49441#p49441</guid>
		</item>
			<item>
			<title>parser project needs C++ programmer</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=49424#p49424</link>
				<description><![CDATA[I'd like to know if anyone of you would be interested in being payed ($$$)
to program a BNF like parser.<br />Intermediate to advanced programmer
skills required because the project deals allot with pointers and memory
updates and<br />inter-mixes c/c++/perl code. Anyone interested visit
"http://cppcode.angelfire.com/blog/" onclick="this.target='_blank';"
rel="nofollow" for futher details<br /><br /><!-- e --><a
href="mailto:cvv3@yahoo.com">cvv3@yahoo.com</a><!-- e --><br /><br /> <img
src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif" alt=":D"
title="Very Happy" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=20675">cpp19user</a> &bull; on Fri Jan 23, 2009 2:53 am &bull; Replies 0 &bull; Views 157</p><hr />]]></description>
					<content:encoded><![CDATA[I'd like to know if anyone of you would be interested in being payed ($$$)
to program a BNF like parser.<br />Intermediate to advanced programmer
skills required because the project deals allot with pointers and memory
updates and<br />inter-mixes c/c++/perl code. Anyone interested visit
"http://cppcode.angelfire.com/blog/" onclick="this.target='_blank';"
rel="nofollow" for futher details<br /><br /><!-- e --><a
href="mailto:cvv3@yahoo.com">cvv3@yahoo.com</a><!-- e --><br /><br /> <img
src="http://www.devppl.com/forum/images/smilies//icon_biggrin.gif" alt=":D"
title="Very Happy" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[20675]]></dc:creator>
			<dc:date>2009-01-23T01:53:53+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=49424#p49424</guid>
		</item>
			<item>
			<title>Re: Compiler list</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=48607#p48607</link>
				<description><![CDATA[I would go for Dev-Cpp it's no longer being updated, but it compiler
everything I have created to date, at the moment I'm using the newest
version of SDL with Dev-Cpp 4.9<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Wed Apr 25, 2007 9:29 pm &bull; Replies 1 &bull; Views 1730</p><hr />]]></description>
					<content:encoded><![CDATA[I would go for Dev-Cpp it's no longer being updated, but it compiler
everything I have created to date, at the moment I'm using the newest
version of SDL with Dev-Cpp 4.9]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2008-12-15T18:16:38+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=48607#p48607</guid>
		</item>
			<item>
			<title>Re: Stopping executing script...</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=48606#p48606</link>
				<description><![CDATA[Sorry got one of the commands wrong lol, heres an example program. As I
said above im not sure if this will work as I'm only a C programmer.<br
/><br /><div class="quotetitle"><b>Quote:</b></div><div
class="quotecontent"><span style="font-style: italic">#include <stdio.h><br
/><br />void main()<br />{<br />     fflush(stdin);<br />     getchar();<br
/>     <br />     return 0;<br />}</span></div><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Mon Sep 29, 2008 4:31 pm &bull; Replies 2 &bull; Views 505</p><hr />]]></description>
					<content:encoded><![CDATA[Sorry got one of the commands wrong lol, heres an example program. As I
said above im not sure if this will work as I'm only a C programmer.<br
/><br /><div class="quotetitle"><b>Quote:</b></div><div
class="quotecontent"><span style="font-style: italic">#include <stdio.h><br
/><br />void main()<br />{<br />     fflush(stdin);<br />     getchar();<br
/>     <br />     return 0;<br />}</span></div>]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2008-12-15T18:12:18+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=48606#p48606</guid>
		</item>
			<item>
			<title>Re: Where can I download a free C++Language?</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=48592#p48592</link>
				<description><![CDATA[Using free of charge crossplatform IDE....<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=19961">BennettRich</a> &bull; on Mon Nov 10, 2008 12:03 pm &bull; Replies 2 &bull; Views 390</p><hr />]]></description>
					<content:encoded><![CDATA[Using free of charge crossplatform IDE....]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[19961]]></dc:creator>
			<dc:date>2008-12-15T10:24:18+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=48592#p48592</guid>
		</item>
			<item>
			<title>Windows Mobile 6.0 Cpp App Hello World</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=48038#p48038</link>
				<description><![CDATA[Can anyone write a simple hello world app example using c++ for windows
mobile 6.0?<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=18536">Dantenas</a> &bull; on Tue Nov 18, 2008 9:29 pm &bull; Replies 0 &bull; Views 7033</p><hr />]]></description>
					<content:encoded><![CDATA[Can anyone write a simple hello world app example using c++ for windows
mobile 6.0?]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[18536]]></dc:creator>
			<dc:date>2008-11-18T20:29:05+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=48038#p48038</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=48012#p48012</link>
				<description><![CDATA[There are more weird usage of  default. Maybe you know a good tutorial for
that. If so, please write its url <img
src="http://www.devppl.com/forum/images/smilies//icon_wink.gif" alt=";)"
title="Wink" /><p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=18536">Dantenas</a> &bull; on Mon Nov 17, 2008 9:16 pm &bull; Replies 1 &bull; Views 174</p><hr />]]></description>
					<content:encoded><![CDATA[There are more weird usage of  default. Maybe you know a good tutorial for
that. If so, please write its url <img
src="http://www.devppl.com/forum/images/smilies//icon_wink.gif" alt=";)"
title="Wink" />]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[18536]]></dc:creator>
			<dc:date>2008-11-17T20:19:19+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=48012#p48012</guid>
		</item>
			<item>
			<title>Sockets in 'C'</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=46708#p46708</link>
				<description><![CDATA[Havent found any decent socket tutorials for 'C', does anyone no of any??<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Mon Sep 22, 2008 12:11 pm &bull; Replies 0 &bull; Views 285</p><hr />]]></description>
					<content:encoded><![CDATA[Havent found any decent socket tutorials for 'C', does anyone no of any??]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2008-09-22T12:11:20+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=46708#p46708</guid>
		</item>
			<item>
			<title>Help to do &quot;search&quot;, using C++ Builder 6</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=46526#p46526</link>
				<description><![CDATA[Hello!
<br />First of all, sorry if my english sucks, it's not my first language
>_<
<br />I want some help of you guys.
<br />
<br />I got a vector of dates named ListDate[i], and I want to do a search
on it, to find the last days the user defines, for example:
<br />The user want to see the dates of the last 5 days, then I have to
show the last 5 days in the vector, and could have the same date twice.
<br />
<br />I have an Edit in a form named NumeroDias, NumeroDias receives the
information of the days the user wants, like that:
<br />
<br /><div class="codetitle"><b>Code:</b></div><div
class="codecontent">NumeroDias =
EditNumeroDias->Text.ToDouble&#40;&#41;;</div>
<br />
<br />NumeroDias gets the number the user typed, on this example: the
number 5.
<br />
<br />Anyone knows how I do that?
<br />I don't know if I was very clear, I have a problem with explanations
-.-
<br />If I wasn't clear please ask me, I need some help. <img
src="http://www.devppl.com/forum/images/smilies//icon_sad.gif" alt=":("
title="Sad" />
<br />
<br />Thanks so much ^_^<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=18712">Cindy</a> &bull; on Mon Sep 15, 2008 1:37 pm &bull; Replies 0 &bull; Views 282</p><hr />]]></description>
					<content:encoded><![CDATA[Hello!
<br />First of all, sorry if my english sucks, it's not my first language
>_<
<br />I want some help of you guys.
<br />
<br />I got a vector of dates named ListDate[i], and I want to do a search
on it, to find the last days the user defines, for example:
<br />The user want to see the dates of the last 5 days, then I have to
show the last 5 days in the vector, and could have the same date twice.
<br />
<br />I have an Edit in a form named NumeroDias, NumeroDias receives the
information of the days the user wants, like that:
<br />
<br /><div class="codetitle"><b>Code:</b></div><div
class="codecontent">NumeroDias =
EditNumeroDias->Text.ToDouble&#40;&#41;;</div>
<br />
<br />NumeroDias gets the number the user typed, on this example: the
number 5.
<br />
<br />Anyone knows how I do that?
<br />I don't know if I was very clear, I have a problem with explanations
-.-
<br />If I wasn't clear please ask me, I need some help. <img
src="http://www.devppl.com/forum/images/smilies//icon_sad.gif" alt=":("
title="Sad" />
<br />
<br />Thanks so much ^_^]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[18712]]></dc:creator>
			<dc:date>2008-09-15T13:37:19+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=46526#p46526</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=46289#p46289</link>
				<description><![CDATA[
"http://www.google.co.uk/search?hl=en&q=C%2B%2B+tutorials&btnG=Google+Search&meta="
onclick="this.target='_blank';" rel="nofollow"<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=10862">Johnathan</a> &bull; on Mon Sep 08, 2008 11:45 am &bull; Replies 1 &bull; Views 358</p><hr />]]></description>
					<content:encoded><![CDATA[
"http://www.google.co.uk/search?hl=en&q=C%2B%2B+tutorials&btnG=Google+Search&meta="
onclick="this.target='_blank';" rel="nofollow"]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[10862]]></dc:creator>
			<dc:date>2008-09-08T16:23:31+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=46289#p46289</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=43602#p43602</link>
				<description><![CDATA[Sorry doesnt matter, lol was just my stupidity coming through lol.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Fri Jul 04, 2008 2:13 pm &bull; Replies 1 &bull; Views 589</p><hr />]]></description>
					<content:encoded><![CDATA[Sorry doesnt matter, lol was just my stupidity coming through lol.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2008-07-04T14:50:18+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=43602#p43602</guid>
		</item>
			<item>
			<title>A C++ programme to display sensor readings on PC</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=43306#p43306</link>
				<description><![CDATA[I want to write a programming so that the readings/data from the sensor on
the zigbee board through the serial port can be transferred to the PC and
the reading shown on the PC through this program.Anyone has sample code who
can shared with me?Thanks a lot 
<br />
<br />You can email to Joelkiu@hotmail. com. Thanks!^^<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=17274">hibernate89</a> &bull; on Sun Jun 29, 2008 7:25 am &bull; Replies 0 &bull; Views 491</p><hr />]]></description>
					<content:encoded><![CDATA[I want to write a programming so that the readings/data from the sensor on
the zigbee board through the serial port can be transferred to the PC and
the reading shown on the PC through this program.Anyone has sample code who
can shared with me?Thanks a lot 
<br />
<br />You can email to Joelkiu@hotmail. com. Thanks!^^]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[17274]]></dc:creator>
			<dc:date>2008-06-29T07:25:55+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=43306#p43306</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=43189#p43189</link>
				<description><![CDATA[Best way to learn the main parts of C or C++ is some videos you can find
VIA torrent search. Took me ages to teach my self a large portion of C and
the found the Videos and it was easy even the pointers.<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=8960">instinct46</a> &bull; on Wed Sep 29, 2004 9:56 pm &bull; Replies 10 &bull; Views 3685</p><hr />]]></description>
					<content:encoded><![CDATA[Best way to learn the main parts of C or C++ is some videos you can find
VIA torrent search. Took me ages to teach my self a large portion of C and
the found the Videos and it was easy even the pointers.]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[8960]]></dc:creator>
			<dc:date>2008-06-26T09:45:06+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=43189#p43189</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=38864#p38864</link>
				<description><![CDATA[for information regarding C++ and its tutorials you should visit at
allfree-stuffs.com and w3schools.com
<br />and if you want to get knowledge about seo,web designing ,link
buildings and e-commerce etc . you can visit at following links:-<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=15810">MANDY</a> &bull; on Sun Apr 29, 2007 10:33 pm &bull; Replies 1 &bull; Views 1226</p><hr />]]></description>
					<content:encoded><![CDATA[for information regarding C++ and its tutorials you should visit at
allfree-stuffs.com and w3schools.com
<br />and if you want to get knowledge about seo,web designing ,link
buildings and e-commerce etc . you can visit at following links:-]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[15810]]></dc:creator>
			<dc:date>2008-04-05T10:30:08+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=38864#p38864</guid>
		</item>
			<item>
			<title></title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=38855#p38855</link>
				<description><![CDATA[hmm i will google it thx!<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=15798">techker</a> &bull; on Fri Apr 04, 2008 3:08 pm &bull; Replies 2 &bull; Views 766</p><hr />]]></description>
					<content:encoded><![CDATA[hmm i will google it thx!]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[15798]]></dc:creator>
			<dc:date>2008-04-05T02:13:07+01:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=38855#p38855</guid>
		</item>
			<item>
			<title>Whats a user friendly c++ prog</title>
			<link>http://www.devppl.com/forum/./viewtopic.php?p=37009#p37009</link>
				<description><![CDATA[I need one for extended ipod touch modding on a windows<p>Statistics : Posted by <a href="http://www.devppl.com/forum/memberlist.php?mode=viewprofile&amp;u=14969">itzjustice</a> &bull; on Sun Feb 17, 2008 8:38 am &bull; Replies 0 &bull; Views 666</p><hr />]]></description>
					<content:encoded><![CDATA[I need one for extended ipod touch modding on a windows]]></content:encoded>
					<category domain="http://www.devppl.com/forum/viewforum.php?f=37"><![CDATA[C and C++ Forum]]></category>
			<dc:creator><![CDATA[14969]]></dc:creator>
			<dc:date>2008-02-17T07:38:46+00:00</dc:date>
			<guid isPermaLink="false">http://www.devppl.com/forum/./viewtopic.php?p=37009#p37009</guid>
		</item>
			<item>
			<title>Click to jump to page…</title>
			<description><![CDATA[
			<div class="pagination">
				  Page <strong>1</strong> of <strong>2</strong> &bull; <span><strong>1</strong><span class="page-sep">, </span><a href="rss.php?f=37&amp;start=30">2</a></span>			</div>
			<hr />]]></description>
			<guid isPermaLink="false"></guid>
        </item>
	
	</channel>
</rss>