<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by william930</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 07 Jun 2026 17:03:24 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Upgrade GPU soon, need recommendation</title>
            <link>http://forum.lowyat.net/topic/4830166</link>
            <description>RTX 2070 Super or RX 5700XT?&lt;br /&gt;Budget RM3000 max for GPU&lt;br /&gt;&lt;br /&gt;Gonna use it with Ryzen 7 3700X CPU</description>
            <author>william930</author>
            <category>Hardware</category>
            <pubDate>Fri, 30 Aug 2019 00:53:28 +0800</pubDate>
        </item>
        <item>
            <title>Runtime Check Failure #2 After Write File</title>
            <link>http://forum.lowyat.net/topic/3322984</link>
            <description>As title, all sub functions are working just nice...&lt;br /&gt;But soon after output all the data into the txt file, debug error shows up.&lt;br /&gt;&lt;img src='http://i1370.photobucket.com/albums/ag270/WilliamTang93/Capture_zps5adaa847.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;I just cannot figure this out  &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt; &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; &lt;br /&gt;Any comments are appreciated&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('3b6a73272383247a2610a5612cc50a3c')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;3b6a73272383247a2610a5612cc50a3c&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;#include &amp;lt;iostream&amp;gt;&lt;br /&gt;#include &amp;lt;iomanip&amp;gt;&lt;br /&gt;#include &amp;lt;fstream&amp;gt;&lt;br /&gt;#include &amp;lt;cstring&amp;gt;&lt;br /&gt;#include &amp;lt;cctype&amp;gt;&lt;br /&gt;using namespace std;&lt;br /&gt;&lt;br /&gt;typedef struct&lt;br /&gt;{&lt;br /&gt;	char acc_no[9];&lt;br /&gt;	char name[20];&lt;br /&gt;	char contact_no[10];&lt;br /&gt;	double balance;&lt;br /&gt;} CLIENT_INFO;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;	ifstream inFile(&amp;quot;client.txt&amp;quot;);&lt;br /&gt;&lt;br /&gt;	if (&amp;#33;inFile)&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;Error opening input file&amp;#092;n&amp;quot;;&lt;br /&gt;&lt;br /&gt;	else&lt;br /&gt;	{&lt;br /&gt;		CLIENT_INFO client[20];&lt;br /&gt;		int index = -1;&lt;br /&gt;		char choice[1];&lt;br /&gt;&lt;br /&gt;		inFile.getline(client[++index].acc_no, 9);&lt;br /&gt;		while (inFile)&lt;br /&gt;		{&lt;br /&gt;			if (inFile.peek() == &amp;#39;&amp;#092;n&amp;#39;)&lt;br /&gt;				inFile.ignore(256, &amp;#39;&amp;#092;n&amp;#39;);&lt;br /&gt;			inFile.getline(client[index].name, 20);&lt;br /&gt;			if (inFile.peek() == &amp;#39;&amp;#092;n&amp;#39;)&lt;br /&gt;				inFile.ignore(256, &amp;#39;&amp;#092;n&amp;#39;);&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[index].contact_no;&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[index].balance;&lt;br /&gt;&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[++index].acc_no;&lt;br /&gt;		}&lt;br /&gt;		inFile.close();&lt;br /&gt;&lt;br /&gt;		/*do&lt;br /&gt;		{&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;*************************************************************&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;&amp;#092;tWelcome To Karacule Bank Account System&amp;quot; &amp;lt;&amp;lt; endl;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;*************************************************************&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;&amp;#092;t&amp;#092;tMain Menu&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;Please choose one of the options below to proceed&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;1. Client Information List&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;2. Search&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;3. Advanced Search&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;4. Amount Withdraw&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;5. Amount Transfer&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;6. Record Deletion&amp;#092;n&amp;quot;;&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;7. Exit&amp;#092;n&amp;quot;;&lt;br /&gt;&lt;br /&gt;			cin &amp;gt;&amp;gt; choice;&lt;br /&gt;&lt;br /&gt;			if (strlen(choice) == 2)&lt;br /&gt;				choice[0] = 8;&lt;br /&gt;&lt;br /&gt;			switch (choice[0])&lt;br /&gt;			{&lt;br /&gt;			case &amp;#39;1&amp;#39;: listclient(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;2&amp;#39;: searchclient(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;3&amp;#39;: adv_searchclient(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;4&amp;#39;: withdraw(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;5&amp;#39;: transfer(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;6&amp;#39;: index = del_acc(client, index);&lt;br /&gt;				break;&lt;br /&gt;			case &amp;#39;7&amp;#39;: ending();&lt;br /&gt;				break;&lt;br /&gt;			default: cout &amp;lt;&amp;lt; &amp;quot;Invalid Option.&amp;#092;n&amp;quot;;&lt;br /&gt;			}&lt;br /&gt;			system(&amp;quot;pause&amp;quot;);&lt;br /&gt;			system(&amp;quot;cls&amp;quot;);&lt;br /&gt;		} while (choice[0] &amp;#33;= &amp;#39;7&amp;#39;);&lt;br /&gt;		*/&lt;br /&gt;&lt;br /&gt;		ofstream outFile(&amp;quot;client.txt&amp;quot;);&lt;br /&gt;		if (&amp;#33;outFile)&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;Error opening output file, data are not saved.&amp;#092;n&amp;quot;;&lt;br /&gt;		else&lt;br /&gt;		{&lt;br /&gt;			for (int i = 0; i &amp;lt; index; i++)&lt;br /&gt;			{&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].acc_no &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].name &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].contact_no &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; fixed &amp;lt;&amp;lt; setprecision(2) &amp;lt;&amp;lt; client[i].balance &amp;lt;&amp;lt; endl;&lt;br /&gt;			}&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;Data saved&amp;#33;&amp;#092;n&amp;quot;;&lt;br /&gt;			outFile.close();&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;	system(&amp;quot;pause&amp;quot;);&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;Size of array of struct = 20&lt;br /&gt;Record in txt file = 20&lt;br /&gt;Sample of record&lt;br /&gt;6699454&lt;br /&gt;DAVID NG&lt;br /&gt;63691292&lt;br /&gt;76525.62</description>
            <author>william930</author>
            <category>Codemasters</category>
            <pubDate>Sun, 17 Aug 2014 15:07:52 +0800</pubDate>
        </item>
        <item>
            <title>C++ Compare String Problem</title>
            <link>http://forum.lowyat.net/topic/3319480</link>
            <description>&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('5db2d8a5fd8ccf0e0233d7297e0abc18')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;5db2d8a5fd8ccf0e0233d7297e0abc18&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;char search_name[20];&lt;br /&gt;&lt;br /&gt;					strcpy(search_name, search);&lt;br /&gt;&lt;br /&gt;					for (int a = 0; a &amp;lt; (strlen(search_name)); a++)&lt;br /&gt;						search_name[a] = toupper(search_name[a]);&lt;br /&gt;&lt;br /&gt;					int turn = 0, i = 0;&lt;br /&gt;&lt;br /&gt;					while (i &amp;lt; size)&lt;br /&gt;					{&lt;br /&gt;						char* char_pointer;&lt;br /&gt;						char_pointer = strstr(client[i].name, search_name);&lt;br /&gt;						if (char_pointer &amp;#33;= NULL)&lt;br /&gt;						{&lt;br /&gt;							cout &amp;lt;&amp;lt; fixed;&lt;br /&gt;							cout &amp;lt;&amp;lt; setw(20) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; &amp;quot;Account Number&amp;quot; &amp;lt;&amp;lt; setw(20) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; &amp;quot;Client Name&amp;quot;&lt;br /&gt;								&amp;lt;&amp;lt; setw(15) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; &amp;quot;Contact Number&amp;quot; &amp;lt;&amp;lt; &amp;quot;&amp;#092;t&amp;quot; &amp;lt;&amp;lt; setw(15) &amp;lt;&amp;lt; right &amp;lt;&amp;lt; &amp;quot;Balance&amp;quot;&lt;br /&gt;								&amp;lt;&amp;lt; endl;&lt;br /&gt;							cout &amp;lt;&amp;lt; setw(20) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; client[i].acc_no &amp;lt;&amp;lt; setw(20) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; client[i].name&lt;br /&gt;								&amp;lt;&amp;lt; &amp;quot;01&amp;quot; &amp;lt;&amp;lt; setw(15) &amp;lt;&amp;lt; left &amp;lt;&amp;lt; client[i].contact_no &amp;lt;&amp;lt; &amp;quot;&amp;#092;tRM&amp;quot; &amp;lt;&amp;lt; setw(9) &amp;lt;&amp;lt; right &amp;lt;&amp;lt;&lt;br /&gt;								setprecision(2) &amp;lt;&amp;lt; client[i].balance &amp;lt;&amp;lt; endl;&lt;br /&gt;							i++;&lt;br /&gt;						}&lt;br /&gt;						else&lt;br /&gt;						{&lt;br /&gt;							i++;&lt;br /&gt;							turn++;&lt;br /&gt;						}&lt;br /&gt;					}&lt;br /&gt;					if (turn == size)&lt;br /&gt;						cout &amp;lt;&amp;lt; &amp;quot;No Record Found&amp;#092;n&amp;quot;;&lt;br /&gt;					system(&amp;quot;pause&amp;quot;);&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;Why the system still show &amp;#39;No Record Found&amp;#39; when i&amp;#39;m using the right name to search???&lt;br /&gt;It like char_pointer = NULL even it has the same character in both strings...&lt;br /&gt;Any comment is aprreciated...&lt;br /&gt; &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>william930</author>
            <category>Codemasters</category>
            <pubDate>Wed, 13 Aug 2014 20:33:14 +0800</pubDate>
        </item>
        <item>
            <title>Weird Symbol When Read File</title>
            <link>http://forum.lowyat.net/topic/3316282</link>
            <description>Im already follow all the steps that it should be to read from a txt file...&lt;br /&gt;But why weird symbols appear on the top of screen?&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('1cbfdc338f6943d4cd73eaf23a7937e2')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;1cbfdc338f6943d4cd73eaf23a7937e2&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;#include &amp;lt;iostream&amp;gt;																						&lt;br /&gt;#include &amp;lt;iomanip&amp;gt;																						&lt;br /&gt;#include &amp;lt;fstream&amp;gt;																						&lt;br /&gt;#include &amp;lt;cstring&amp;gt;																						&lt;br /&gt;#include &amp;lt;cctype&amp;gt;																						&lt;br /&gt;using namespace std;&lt;br /&gt;&lt;br /&gt;typedef struct&lt;br /&gt;{&lt;br /&gt;	char acc_no[9];&lt;br /&gt;	char name[20];&lt;br /&gt;	int contact_no;&lt;br /&gt;	double balance;&lt;br /&gt;} CLIENT_INFO;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;	ifstream inFile(&amp;quot;client.txt&amp;quot;);&lt;br /&gt;&lt;br /&gt;	if (&amp;#33;inFile)&lt;br /&gt;		cout &amp;lt;&amp;lt; &amp;quot;Error opening input file&amp;#092;n&amp;quot;;&lt;br /&gt;&lt;br /&gt;	else&lt;br /&gt;	{&lt;br /&gt;		CLIENT_INFO client[21];&lt;br /&gt;		int index = -1;&lt;br /&gt;&lt;br /&gt;		inFile.getline(client[++index].acc_no, 9);&lt;br /&gt;		while(inFile)&lt;br /&gt;		{&lt;br /&gt;			if (inFile.peek() == &amp;#39;&amp;#092;n&amp;#39;)&lt;br /&gt;				inFile.ignore(256, &amp;#39;&amp;#092;n&amp;#39;);&lt;br /&gt;			inFile.getline(client[index].name, 20);&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[index].contact_no;&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[index].balance;&lt;br /&gt;			&lt;br /&gt;			inFile &amp;gt;&amp;gt; client[++index].acc_no;&lt;br /&gt;		}&lt;br /&gt;		inFile.close();&lt;br /&gt;&lt;br /&gt;		for (int i = -1; i &amp;lt; 20; i++)&lt;br /&gt;			cout &amp;lt;&amp;lt; setw(8) &amp;lt;&amp;lt; fixed &amp;lt;&amp;lt; client[i].acc_no &amp;lt;&amp;lt; endl;&lt;br /&gt;		&lt;br /&gt;		ofstream outFile(&amp;quot;client.txt&amp;quot;);&lt;br /&gt;		if (&amp;#33;outFile)&lt;br /&gt;			cout &amp;lt;&amp;lt; &amp;quot;Error opening output file, records are not updated.&amp;#092;n&amp;quot;;&lt;br /&gt;		else&lt;br /&gt;		{&lt;br /&gt;			for (int i = 0; i &amp;lt; index; i++)&lt;br /&gt;			{&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].acc_no &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].name &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; client[i].contact_no &amp;lt;&amp;lt; endl;&lt;br /&gt;				outFile &amp;lt;&amp;lt; fixed &amp;lt;&amp;lt; setprecision(2) &amp;lt;&amp;lt; client[i].balance &amp;lt;&amp;lt; endl;&lt;br /&gt;			}&lt;br /&gt;			outFile.close();&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;Sorry about the partial output because it still in early stage...&lt;br /&gt;And the output&lt;br /&gt;&lt;img src='http://i1370.photobucket.com/albums/ag270/WilliamTang93/Capture_zpsa86ab72e.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;Any comment is appreciated, thanks~~~&lt;br /&gt;</description>
            <author>william930</author>
            <category>Codemasters</category>
            <pubDate>Sun, 10 Aug 2014 23:21:45 +0800</pubDate>
        </item>
        <item>
            <title>ASUS laptop USB problem</title>
            <link>http://forum.lowyat.net/topic/3234841</link>
            <description>My friend has this ASUS VivoBook S550CA laptop and now she cannot access to any pendrive or external HDD after plugged in, can see the drive in device manager under other device section but still canot access through Computer window, but her usb wireless mouse works.&lt;br /&gt;What happen to that laptop??? &lt;!--emo&amp;:shock:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/shocking.gif' border='0' style='vertical-align:middle' alt='shocking.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;Help &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>william930</author>
            <category>Technical Support</category>
            <pubDate>Sat, 24 May 2014 01:46:29 +0800</pubDate>
        </item>
        <item>
            <title>Beginner need help</title>
            <link>http://forum.lowyat.net/topic/3044110</link>
            <description>Im doing a C program for my assignment and its very wrong in my codes  &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;Now even have some kind of bug??? in my program...&lt;br /&gt;Be specifically is at item purchase (self defined function)...&lt;br /&gt;im tired to fix but still canot fix after used so many ways...&lt;br /&gt;help~~~ &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; &lt;br /&gt;it still half done but i canot continue without fix that bug...&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('bb3bbefaea3bba261029a0acad046844')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;bb3bbefaea3bba261029a0acad046844&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include &amp;lt;string.h&amp;gt;&lt;br /&gt;#include &amp;lt;stdlib.h&amp;gt;&lt;br /&gt;&lt;br /&gt;int get_user_login (void);&lt;br /&gt;int get_menu_selection (void);&lt;br /&gt;int item_purchase (void);&lt;br /&gt;&lt;br /&gt;int main (void)&lt;br /&gt;{&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*			Welcome to XXX Cashier System			*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;	char user_login , menu_selection;&lt;br /&gt;&lt;br /&gt;	user_login = get_user_login ();&lt;br /&gt;	system ( &amp;quot;cls&amp;quot; );&lt;br /&gt;	menu_selection = get_menu_selection ();&lt;br /&gt;&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int get_user_login (void)&lt;br /&gt;{&lt;br /&gt;	char username_1 [20] = &amp;quot;JACK&amp;quot; , username_2 [20] = &amp;quot;JOHN&amp;quot;;&lt;br /&gt;	char password_1 [8] = &amp;quot;1305594&amp;quot; , password_2 [8] = &amp;quot;1305570&amp;quot; &lt;br /&gt;	int cmp1,cmp2;&lt;br /&gt;	char username[20];&lt;br /&gt;	char password[8];&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;Username(in capital letter)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;	gets(username);&lt;br /&gt;	fflush (stdin);&lt;br /&gt;&lt;br /&gt;	cmp1 = strcmp(username,username_1);&lt;br /&gt;	cmp2 = strcmp(username,username_2);&lt;br /&gt;	&lt;br /&gt;&lt;br /&gt;	if (cmp1 ==0)&lt;br /&gt;		{&lt;br /&gt;		printf(&amp;quot;Password(case sensitive)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		gets(password);&lt;br /&gt;&lt;br /&gt;		cmp11 = strcmp(password,password_1);&lt;br /&gt;&lt;br /&gt;		while(cmp11 &amp;#33;= 0)&lt;br /&gt;		{ printf(&amp;quot;Please key in again&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		gets(password);&lt;br /&gt;&lt;br /&gt;		cmp11 = strcmp(password,password_1);&lt;br /&gt;		}&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	if (cmp2 ==0)&lt;br /&gt;		{printf(&amp;quot;Password(case sensitive)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		gets(password);&lt;br /&gt;&lt;br /&gt;		cmp12 = strcmp(password,password_2);&lt;br /&gt;&lt;br /&gt;		while(cmp12 &amp;#33;= 0)&lt;br /&gt;		{ printf(&amp;quot;Please key in again&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		gets(password);&lt;br /&gt;&lt;br /&gt;		cmp12 = strcmp(password,password_2);&lt;br /&gt;		}&lt;br /&gt;		}&lt;br /&gt;		&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int get_menu_selection (void)&lt;br /&gt;{&lt;br /&gt;	int menu_user;&lt;br /&gt;	int total_amount;&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	1: Item List							*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	2: Payment							*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	3: Exit Program							*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	&lt;br /&gt;	printf(&amp;quot;Please make your selection&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%d&amp;quot;, &amp;amp;menu_user);&lt;br /&gt;&lt;br /&gt;	system ( &amp;quot;cls&amp;quot; );&lt;br /&gt;&lt;br /&gt;		switch(menu_user)&lt;br /&gt;		{&lt;br /&gt;			case 1 : menu_user = item_purchase ();&lt;br /&gt;			break;&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;		total_amount = item_purchase();&lt;br /&gt;		&lt;br /&gt;		system ( &amp;quot;cls&amp;quot; );&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	1: Item List							*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	2: Total Purchase Amount					*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	3: Exit Program							*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	&lt;br /&gt;	printf(&amp;quot;Please make your selection&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%d&amp;quot;, &amp;amp;menu_user);&lt;br /&gt;	fflush (stdin);&lt;br /&gt;&lt;br /&gt;	system ( &amp;quot;cls&amp;quot; );&lt;br /&gt;&lt;br /&gt;		switch(menu_user)&lt;br /&gt;		{&lt;br /&gt;			case 1 : menu_user = item_purchase ();&lt;br /&gt;			break;&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int item_purchase (void)&lt;br /&gt;{&lt;br /&gt;	int item_code ;&lt;br /&gt;	int quantity1 , quantity2 , quantity3 , quantity4 , quantity5 , quantity6;&lt;br /&gt;	int quantity11 = 0 , quantity22 = 0 , quantity33 = 0 , quantity44 = 0 , quantity55 = 0 , quantity66 = 0;&lt;br /&gt;	int amount1 , amount2 , amount3 , amount4 , amount5 , amount6 , total_amount=0;&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	Code	Name					Price		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	101						380		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	102						470		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	103						590		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	104						760		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	105						990		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*	106						1080		*&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;*************************************************************************&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;&lt;br /&gt;	while (item_code &amp;#33;= -999)&lt;br /&gt;	{&lt;br /&gt;	if ( item_code == 101 )&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;		printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity1);&lt;br /&gt;			}&lt;br /&gt;		&lt;br /&gt;		if (quantity1 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;			quantity11 += quantity1;&lt;br /&gt;			amount1 = quantity11 * 380;&lt;br /&gt;			total_amount += amount1;&lt;br /&gt;&lt;br /&gt;			printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;		else&lt;br /&gt;			printf(&amp;quot;Invalid quantity, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	if (item_code == 102)&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;		printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;		scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity2);&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;		if (quantity2 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;			quantity22 += quantity2;&lt;br /&gt;			amount2 = quantity22 * 470 ;&lt;br /&gt;			total_amount += amount1 +amount2;&lt;br /&gt;&lt;br /&gt;			printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;		else&lt;br /&gt;			printf(&amp;quot;Invalid quantity, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;	&lt;br /&gt;	if (item_code == 103)&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;			printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity3);&lt;br /&gt;			}&lt;br /&gt;			if (quantity3 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;				quantity33 += quantity3;&lt;br /&gt;				amount3 = quantity33 * 590;&lt;br /&gt;				total_amount += amount1 +amount2 + amount3;&lt;br /&gt;&lt;br /&gt;				printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;				scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;			else &lt;br /&gt;				printf(&amp;quot;Invalid quantiy, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	if (item_code == 104)&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;			printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity4);&lt;br /&gt;			}&lt;br /&gt;			if (quantity4 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;				quantity44 += quantity4;&lt;br /&gt;				amount4 = quantity44 * 760;&lt;br /&gt;				total_amount += amount1 +amount2 + amount3 + amount4;&lt;br /&gt;&lt;br /&gt;				printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;				scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;			else &lt;br /&gt;				printf(&amp;quot;Invalid quantiy, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	if (item_code == 105)&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;			printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity5);&lt;br /&gt;			}&lt;br /&gt;			if (quantity5 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;				quantity55 += quantity5;&lt;br /&gt;				amount5 = quantity55 * 990;&lt;br /&gt;				total_amount += amount1 +amount2 + amount3 + amount4 + amount5;&lt;br /&gt;&lt;br /&gt;				printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;				scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;			else &lt;br /&gt;				printf(&amp;quot;Invalid quantiy, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	if (item_code == 106)&lt;br /&gt;		{&lt;br /&gt;			{&lt;br /&gt;			printf(&amp;quot;Key in the quantity&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;			scanf(&amp;quot;%d&amp;quot;, &amp;amp;quantity6);&lt;br /&gt;			}&lt;br /&gt;			if (quantity6 &amp;gt; 0)&lt;br /&gt;			{&lt;br /&gt;				quantity66 += quantity6;&lt;br /&gt;				amount6 = quantity66 * 1080;&lt;br /&gt;				total_amount += amount1 +amount2 + amount3 + amount4 + amount5 + amount6;&lt;br /&gt;&lt;br /&gt;				printf(&amp;quot;Key in the item code(-999 to exit to menu)&amp;#092;n&amp;gt;&amp;gt;&amp;quot;);&lt;br /&gt;				scanf(&amp;quot;%d&amp;quot;, &amp;amp;item_code);&lt;br /&gt;			}&lt;br /&gt;			else &lt;br /&gt;				printf(&amp;quot;Invalid quantiy, please try again&amp;quot;);&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	system ( &amp;quot;cls&amp;quot; );&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;Shopping List&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;Code	Quantity	Item			Price(RM)	&amp;#092;n&amp;quot;);&lt;br /&gt;	printf(&amp;quot;101		%d					380			&amp;#092;n&amp;quot;, quantity11);&lt;br /&gt;	printf(&amp;quot;102		%d					470			&amp;#092;n&amp;quot;, quantity22);&lt;br /&gt;	printf(&amp;quot;103		%d					590			&amp;#092;n&amp;quot;, quantity33);&lt;br /&gt;	printf(&amp;quot;104		%d					760			&amp;#092;n&amp;quot;, quantity44);&lt;br /&gt;	printf(&amp;quot;105		%d					990			&amp;#092;n&amp;quot;, quantity55);&lt;br /&gt;	printf(&amp;quot;106		%d					1080		&amp;#092;n&amp;quot;, quantity66);&lt;br /&gt;	printf(&amp;quot;Total Amount = %d&amp;#092;n&amp;quot;, total_amount);&lt;br /&gt;&lt;br /&gt;	return total_amount;&lt;br /&gt;}</description>
            <author>william930</author>
            <category>Codemasters</category>
            <pubDate>Tue, 26 Nov 2013 04:08:36 +0800</pubDate>
        </item>
        <item>
            <title>My PC wont startup...</title>
            <link>http://forum.lowyat.net/topic/2811784</link>
            <description>Just yesterday when im playing DN SEA, my PC freezes out of sudden and not responding at all...&lt;br /&gt;Im forced restart it then become normal again...&lt;br /&gt;But after 4-5 hours of surfing internet and watching movie. i play and freeze again...&lt;br /&gt;Now my PC totally wont startup, all fans are running, power led got on and my display just stay in standby mode, which is show nothing...&lt;br /&gt;Wat happen??? Mobo faulty??? PSU faulty??? or something else???&lt;br /&gt;I tried remove CMOS battery but useless...&lt;br /&gt; &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;  &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;My spec:&lt;br /&gt;Mobo: Foxconn H67M&lt;br /&gt;Proc: i7 2600&lt;br /&gt;Ram: 4GB&lt;br /&gt;Graphic: AMD Radeon HD 6670&lt;br /&gt;PSU: FSP Hexa 500W</description>
            <author>william930</author>
            <category>Technical Support</category>
            <pubDate>Tue, 14 May 2013 15:59:25 +0800</pubDate>
        </item>
        <item>
            <title>STPM result 1.9</title>
            <link>http://forum.lowyat.net/topic/2742800</link>
            <description>PA 3.00&lt;br /&gt;Math T 0.00(Epic fail) &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;Physic 1.67&lt;br /&gt;Chemistry 3.00&lt;br /&gt;Still have the possibilities to attend local uni???&lt;br /&gt;Considering UTAR course, but still more prefer local uni...&lt;br /&gt;Totally no mood... &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>william930</author>
            <category>Education Essentials</category>
            <pubDate>Wed, 20 Mar 2013 00:25:07 +0800</pubDate>
        </item>
        <item>
            <title>Is it a good time to buy WoL and HoTS now?</title>
            <link>http://forum.lowyat.net/topic/2727952</link>
            <description>I play those *ahem* version of WoL before...&lt;br /&gt;And now i think buying this game is totally worth it...&lt;br /&gt;Just saw the purchase price(digital copy)...&lt;br /&gt;WoL+HoTS 74.9SGD....&lt;br /&gt;This price good???</description>
            <author>william930</author>
            <category>StarCraft</category>
            <pubDate>Thu, 07 Mar 2013 23:34:26 +0800</pubDate>
        </item>
        <item>
            <title>Finding part time/temporary job</title>
            <link>http://forum.lowyat.net/topic/2656446</link>
            <description>Got any vacancy???&lt;br /&gt;Im a student who waiting for my STPM result...&lt;br /&gt;PM me if available&lt;br /&gt;Thx&amp;#33;&amp;#33;&amp;#33; &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;</description>
            <author>william930</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sun, 06 Jan 2013 00:41:54 +0800</pubDate>
        </item>
        <item>
            <title>Buying a new laptop</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Hardware</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Buying a new laptop</title>
            <link>http://forum.lowyat.net/topic/2556255</link>
            <description>My friend wan to buy a laptop for multimedia purpose(to edit video)...&lt;br /&gt;She prefer asus laptop for some reason...&lt;br /&gt;Can give me some recommendation which model and state the price too...&lt;br /&gt;Her budget is RM2500 - 2800&lt;br /&gt;Thx &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;</description>
            <author>william930</author>
            <category>Mobile Computing</category>
            <pubDate>Sat, 20 Oct 2012 22:37:32 +0800</pubDate>
        </item>
        <item>
            <title>Where to buy a cash and mol points?</title>
            <link>http://forum.lowyat.net/topic/2512080</link>
            <description>As title...&lt;br /&gt;Any replies are appreciated,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>william930</author>
            <category>Gamers Hideout</category>
            <pubDate>Mon, 17 Sep 2012 03:22:55 +0800</pubDate>
        </item>
        <item>
            <title>Toshiba L510 Laptop WLAN Problem</title>
            <link>http://forum.lowyat.net/topic/2468497</link>
            <description>My sister has a Toshiba L510 laptop and shen cannot connect to network via WLAN today...&lt;br /&gt;Seem like the adapter is gone and cannot search any Wi-Fi at all...&lt;br /&gt;Wat is happened??? Reinstall WLAN driver and VAP also cannot slove this problem...&lt;br /&gt;HELP&amp;#33;&amp;#33;&amp;#33; &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>william930</author>
            <category>Technical Support</category>
            <pubDate>Mon, 13 Aug 2012 17:03:56 +0800</pubDate>
        </item>
        <item>
            <title>Toshiba Laptop WLAN Error</title>
            <link>http://forum.lowyat.net/topic/2468482</link>
            <description>My sister has a Toshiba L510 laptop and she cannot connect to internet by WLAN...&lt;br /&gt;Network and Sharing Center does not search and show wireless network connection(like no more WLAN in that laptop)...&lt;br /&gt;Reinstall driver, vap also not fixed...&lt;br /&gt;HELP &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;[addedon]August 13, 2012, 5:01 pm[/addedon]Sorry..&lt;br /&gt;I think i post in wrong section...&lt;br /&gt;This topic closed.</description>
            <author>william930</author>
            <category>Mobile Computing</category>
            <pubDate>Mon, 13 Aug 2012 16:58:23 +0800</pubDate>
        </item>
        <item>
            <title>o2mania for beginner</title>
            <link>http://forum.lowyat.net/topic/2243081</link>
            <description>As title, i need some help for o2mania...&lt;br /&gt;I play o2mania pretty suck...&lt;br /&gt;Got any songs easier to play and what songs can i train when i getting better and better???&lt;br /&gt;</description>
            <author>william930</author>
            <category>Gamers Hideout</category>
            <pubDate>Mon, 27 Feb 2012 01:51:03 +0800</pubDate>
        </item>
        <item>
            <title>Starcraft Custom Campaign</title>
            <link>http://forum.lowyat.net/topic/2239383</link>
            <description>Do you all know a custom campaign called resurgence?&lt;br /&gt;Can someone give me the link to download if u know about it and where can download it...&lt;br /&gt;My friend said that this campaign got 5 chapters and each chapter 10 maps...&lt;br /&gt;Thx to all who replied my post&amp;#33;&amp;#33;&amp;#33; &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;</description>
            <author>william930</author>
            <category>StarCraft</category>
            <pubDate>Fri, 24 Feb 2012 01:43:53 +0800</pubDate>
        </item>
        <item>
            <title>Directx Error</title>
            <link>http://forum.lowyat.net/topic/2174376</link>
            <description>I just open my battlefield 3 and get this error...&lt;br /&gt;I can play this game smoothly before....&lt;br /&gt;My gc is amd radeon hd 6670 and processer is i7-2600&lt;br /&gt; &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; [attachmentid=2619417]</description>
            <author>william930</author>
            <category>Technical Support</category>
            <pubDate>Tue, 03 Jan 2012 01:06:27 +0800</pubDate>
        </item>
        <item>
            <title>Where to buy ori games?</title>
            <link>http://forum.lowyat.net/topic/2147826</link>
            <description>As title, i want to buy ori games....&lt;br /&gt;lowyat or times square got this kind of shops? I study near that area...&lt;br /&gt;I plan to buy bf3 but i know that expansion pack will come out soon, should i buy before or after the expansion pack?&lt;br /&gt;Also want to buy cs:s or just wait for cs:go?&lt;br /&gt;After all, any good FPS games to buy and play???&lt;br /&gt;Thx &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;</description>
            <author>william930</author>
            <category>Gamers Hideout</category>
            <pubDate>Tue, 13 Dec 2011 22:38:23 +0800</pubDate>
        </item>
        <item>
            <title>uTorrent dl problem...</title>
            <link>http://forum.lowyat.net/topic/2142963</link>
            <description>My dl speed now is no so stable....&lt;br /&gt;Lesser seeder torrent(100+ seeders)(10+ leechers)(80-100kbs) can dl faster than a higher seeder torrent(12000+ seeders)(3000+ leechers)(10-30kbs)...&lt;br /&gt;Both dl in midnight....&lt;br /&gt;I want some tutorials for port forward to boosts and stabilise my dl speed...&lt;br /&gt;Can give me step by step tutorials???&lt;br /&gt;My modem is Aztech DSL1000EW(L)&lt;br /&gt; &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>william930</author>
            <category>Internet Related</category>
            <pubDate>Sat, 10 Dec 2011 02:54:31 +0800</pubDate>
        </item>
    </channel>
</rss>
