<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by darrenbkl</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Thu, 30 Jul 2026 10:36:27 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>string and array problem</title>
            <link>http://forum.lowyat.net/topic/954216</link>
            <description>&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;#include&amp;#60;iostream&amp;#62;&lt;br /&gt;#include&amp;#60;cstring&amp;#62;&lt;br /&gt;#include&amp;#60;string&amp;#62;&lt;br /&gt;using namespace std;&lt;br /&gt;&lt;br /&gt;class student&lt;br /&gt;	{&lt;br /&gt; &amp;nbsp; &amp;nbsp;public&amp;#58;&lt;br /&gt; &amp;nbsp;char name&amp;#91;100&amp;#93;,grade;&lt;br /&gt;	};&lt;br /&gt;&lt;br /&gt;bool get_data&amp;#40;student&amp;amp; stu&amp;#41;;&lt;br /&gt;void display_data&amp;#40;student&amp;amp; stu&amp;#41;;&lt;br /&gt;&lt;br /&gt;int main&amp;#40;int argc , char*argv&amp;#91;&amp;#93;&amp;#41;&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp;const int max=10;&lt;br /&gt; &amp;nbsp; &amp;nbsp;student stu&amp;#91;max&amp;#93;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;int i=0,j;&lt;br /&gt;	&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout&amp;#60;&amp;#60;&amp;#34;Enter student names and grades.&amp;#91;&amp;#092;&amp;#34;Exit&amp;#092;&amp;#34; to quit program&amp;#93;&amp;#34;&amp;#60;&amp;#60;endl;&lt;br /&gt;	&lt;br /&gt; &amp;nbsp; &amp;nbsp;while&amp;#40;get_data&amp;#40;stu&amp;#91;i&amp;#93;&amp;#41; &amp;amp;&amp;amp; &amp;#40;i&amp;#60;max&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i++;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;	&lt;br /&gt;	cout&amp;#60;&amp;#60;endl&amp;#60;&amp;#60;&amp;#34;Entries&amp;#34;&amp;#60;&amp;#60;endl;&lt;br /&gt; &amp;nbsp; &amp;nbsp;for&amp;#40;j=0;j&amp;#60;i;j++&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;display_data&amp;#40;stu&amp;#91;j&amp;#93;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;bool get_data&amp;#40;student&amp;amp; stu&amp;#41;&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout&amp;#60;&amp;#60;endl&amp;#60;&amp;#60;&amp;#34;Enter student name &amp;#58; &amp;#34;;&lt;br /&gt;	cin&amp;#62;&amp;#62;stu.name;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if&amp;#40;strcmp&amp;#40;stu.name,&amp;#34;exit&amp;#34;&amp;#41;==0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return false;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;	&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout&amp;#60;&amp;#60;&amp;#34;Enter student grade &amp;#58; &amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cin&amp;#62;&amp;#62;stu.grade;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return true;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void display_data&amp;#40;student&amp;amp; stu&amp;#41;&lt;br /&gt;{&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout&amp;#60;&amp;#60;&amp;#34;Student name &amp;#58; &amp;#34;&amp;#60;&amp;#60;stu.name&amp;#60;&amp;#60;endl;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout&amp;#60;&amp;#60;&amp;#34;Student grade &amp;#58; &amp;#34;&amp;#60;&amp;#60;stu.grade&amp;#60;&amp;#60;endl&amp;#60;&amp;#60;endl;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;This program basically prompt user to enter student name and grade.then print the result.&lt;br /&gt;But the problem is using char array,i can&amp;#39;t enter name with spaces like John Petrucci. I can only enter single name like David. Should I use string variable in this program?If so,how should i use it?as I don&amp;#39;t know much about string. &lt;br /&gt;THX.</description>
            <author>darrenbkl</author>
            <category>Codemasters</category>
            <pubDate>Wed, 04 Mar 2009 16:14:01 +0800</pubDate>
        </item>
        <item>
            <title>OOP in C++</title>
            <link>http://forum.lowyat.net/topic/950048</link>
            <description>HI all,I have basic knowledge in C++ language, now I am learning Object oriented programming in C++.&lt;br /&gt;THrough several web resources,i just couldnt understand stuff like class,inheritance...&lt;br /&gt;Can anybody explain me that? where can I find any problems that i can pratice on?&lt;br /&gt;THX very much.</description>
            <author>darrenbkl</author>
            <category>Codemasters</category>
            <pubDate>Sat, 28 Feb 2009 18:25:49 +0800</pubDate>
        </item>
        <item>
            <title>PS2 ---&amp;#62; samsung 2233sw</title>
            <link>http://forum.lowyat.net/topic/929791</link>
            <description>As a student,i cant afford a good TV.&lt;br /&gt;As a good student,aside from study,I need some entertainment.&lt;br /&gt;As a good college student,I just have a PS2 console and a samsung 2233sw with me.&lt;br /&gt;Any idea how to hook up my PS2 to the LCD monitor?</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Sun, 08 Feb 2009 21:34:19 +0800</pubDate>
        </item>
        <item>
            <title>how to make program executable?</title>
            <link>http://forum.lowyat.net/topic/921175</link>
            <description>I&amp;#39;ve learnt how to use codeblocks to create C++ program.But how to make it an executable one that we can place it on desktop ?Thanks.</description>
            <author>darrenbkl</author>
            <category>Codemasters</category>
            <pubDate>Sat, 31 Jan 2009 12:23:52 +0800</pubDate>
        </item>
        <item>
            <title>Palit HD4850 vs. XFX9800GT vs. Galaxy 9800GTX+</title>
            <link>http://forum.lowyat.net/topic/917521</link>
            <description>Palit HD4850 vs. XFX9800GT vs. Galaxy 9800GTX+&lt;br /&gt;&lt;br /&gt;which one is the best? coz all are in my budget,just dunno which to get.&lt;br /&gt;Not overclocking,just wanna play games in highest setting as possible. : )</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Mon, 26 Jan 2009 19:25:05 +0800</pubDate>
        </item>
        <item>
            <title>What to do after getting a new PC?</title>
            <link>http://forum.lowyat.net/topic/912597</link>
            <description>emm,if I DIY a PC ,Window XP as OS,then what should I do to make the computer works?   those install OS,harddrive partition,adjust bios setting stuff etc. could anyone explain me in detail from a bare PC to a fully working one? THX  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Tue, 20 Jan 2009 18:12:42 +0800</pubDate>
        </item>
        <item>
            <title>2233sw and graphic card</title>
            <link>http://forum.lowyat.net/topic/911328</link>
            <description>HI all,i am getting a samsung 2233sw LCD monitor,which graphic card allow me to play games at maximum resolution? budget around 600,thx.</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Mon, 19 Jan 2009 14:28:16 +0800</pubDate>
        </item>
        <item>
            <title>GC ram and resolution</title>
            <link>http://forum.lowyat.net/topic/904870</link>
            <description>can somebody please explain me about those GC ram,resolution stuff?  what is resolution by the way== haha sorry for the noob question but i just cant get it on google.</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Mon, 12 Jan 2009 21:49:06 +0800</pubDate>
        </item>
        <item>
            <title>replace notebook keypad?</title>
            <link>http://forum.lowyat.net/topic/902929</link>
            <description>is it possible to replace my Inspiron 1420 keypad?</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Sat, 10 Jan 2009 22:24:49 +0800</pubDate>
        </item>
        <item>
            <title>LCD and HDD</title>
            <link>http://forum.lowyat.net/topic/899997</link>
            <description>So I am going to get a 22&amp;quot; LCD monitor,but the problem is I don&amp;#39;t know how to choose...&lt;br /&gt;Graphic card is XFX 9800GT, recommend a good 22&amp;quot; around 600?&lt;br /&gt;&lt;br /&gt;anyway,heard ppl talk about install OS in a small capacity HDD,then store data in the big HDD,then the OS run faster,is that true? If so,at least how big for the OS HDD? and how to do it ==&lt;br /&gt;THx : )</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Thu, 08 Jan 2009 00:35:37 +0800</pubDate>
        </item>
        <item>
            <title>graphic card</title>
            <link>http://forum.lowyat.net/topic/899851</link>
            <description>I m going for nvidia 9800GT,which of the following better?&lt;br /&gt;a)Gigabyte&lt;br /&gt;b)XFX&lt;br /&gt;&lt;br /&gt;i wonder is there any difference?&lt;br /&gt;&lt;br /&gt;budget around 400+</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Wed, 07 Jan 2009 22:06:58 +0800</pubDate>
        </item>
        <item>
            <title>Help advice on gaming pc</title>
            <link>http://forum.lowyat.net/topic/897111</link>
            <description>Need help here,am building a gaming pc for games like call of duty,left 4 dead,need for speed etc. &lt;br /&gt;&lt;br /&gt;Core 2 Duo E7400&lt;br /&gt;Asus P5Q Pro&lt;br /&gt;9800GT (PCIE 2.0)&lt;br /&gt;2x2gb kingston ddr2 800MHz ram&lt;br /&gt;WD 500gb HDD&lt;br /&gt;CM true power 550w PSU&lt;br /&gt;CM 690 casing&lt;br /&gt;17 or 19 inch LCD&lt;br /&gt;&lt;br /&gt;my budget is around 2-2.5k for cpu     perhaps...&lt;br /&gt;&lt;br /&gt;1)can i find OEM version of the E7400?&lt;br /&gt;2)do I need a CPU cooler?&lt;br /&gt;3)Which 9800GT graphic card should i get at good price and performance? Or any other recommendation of GC?&lt;br /&gt;4)how many watt does my pc required? is there a big difference between CM extreme power and true power?&lt;br /&gt;5)recommend good 17/19 inch LCD &lt;br /&gt;&lt;br /&gt;THX for anyone who answer&amp;#33;&amp;#33; sorry for so many question,I am quite new to pc : )</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Mon, 05 Jan 2009 15:17:57 +0800</pubDate>
        </item>
        <item>
            <title>DIY PC</title>
            <link>http://forum.lowyat.net/topic/881674</link>
            <description>Hi ,I m quite a newbie in pc stuff,but eager to diy a pc  &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;What i do is some spreadsheet work,checking mail,surfing,simple games,multitasking&lt;br /&gt;now i m using pentium 4 530, 512mb ram,very old motherboard and it is very slow...&lt;br /&gt;But i don&amp;#39;t know which Intel chip should I get for the above work,any recommendation?</description>
            <author>darrenbkl</author>
            <category>Hardware</category>
            <pubDate>Sat, 20 Dec 2008 18:42:36 +0800</pubDate>
        </item>
        <item>
            <title>ram upgrade</title>
            <link>http://forum.lowyat.net/topic/654519</link>
            <description>Hi all,hav a question here,how much will cost for a 4GB upgrade for my new MBP?Coz i&amp;#39;m doing recording stuff with it &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;  and how much will be the cheapest 320GB and 500GB external HDD? Thx in advance &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>darrenbkl</author>
            <category>Apple Byte</category>
            <pubDate>Tue, 18 Mar 2008 19:23:10 +0800</pubDate>
        </item>
        <item>
            <title>Logic Studio and Edirol UA-25</title>
            <link>http://forum.lowyat.net/topic/653187</link>
            <description>A serious question b4 i get my mac next week  &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;   does Logic Studio 8 compatible with Edirol UA-25?? Thx &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>darrenbkl</author>
            <category>Audiophiles</category>
            <pubDate>Sun, 16 Mar 2008 23:19:22 +0800</pubDate>
        </item>
        <item>
            <title>MBP Logic Studio 8</title>
            <link>http://forum.lowyat.net/topic/653107</link>
            <description>Hi newbie here~~Does the MBP Logic Studio 8 compatible with Edirol UA-25 audio interface??  Thx &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>darrenbkl</author>
            <category>Apple Byte</category>
            <pubDate>Sun, 16 Mar 2008 21:41:32 +0800</pubDate>
        </item>
        <item>
            <title>Jazz guitar</title>
            <link>http://forum.lowyat.net/topic/620129</link>
            <description>Hi all~~I&amp;#39;m a rocker and now into some jazz shit,haha.can anyone give me some advice on learning jazz stuff?? and a big problem to me is what is the f&amp;#39;ing scale tat jazz music is using? and whose song should i learn to improve it  Thx^^</description>
            <author>darrenbkl</author>
            <category>Musicians</category>
            <pubDate>Sat, 26 Jan 2008 18:43:00 +0800</pubDate>
        </item>
        <item>
            <title>d</title>
            <link>http://forum.lowyat.net/topic/459976</link>
            <description>sff</description>
            <author>darrenbkl</author>
            <category>Musicians</category>
            <pubDate>Sun, 20 May 2007 22:21:43 +0800</pubDate>
        </item>
        <item>
            <title>paint guitar</title>
            <link>http://forum.lowyat.net/topic/450974</link>
            <description>hi all,i&amp;#39;m planning to repaint my Jackson cheap 2nd guitar,which type of spray or paint normally use to make it last longer?</description>
            <author>darrenbkl</author>
            <category>Musicians</category>
            <pubDate>Wed, 02 May 2007 20:24:43 +0800</pubDate>
        </item>
    </channel>
</rss>
