<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by Lee8299.Gamer</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Thu, 09 Jul 2026 19:32:05 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTS/WTT] Resident Evil 7</title>
            <link>http://forum.lowyat.net/topic/4500627</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; Resident Evil 7 R3&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; Code used&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt;  &lt;span style='color:red'&gt;RM110&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; Postage or COD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location:&lt;/b&gt; Penang&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method:&lt;/b&gt; PM or WeChat: jjlee8299&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; Good&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt; Finished the game&lt;br /&gt;&lt;br /&gt;I am also interested to trade it for other game so offer me your game . &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>Lee8299.Gamer</author>
            <category>Games Garage Sales</category>
            <pubDate>Sat, 13 Jan 2018 15:56:04 +0800</pubDate>
        </item>
        <item>
            <title>[WTS/WTT] Uncharted 4</title>
            <link>http://forum.lowyat.net/topic/4083492</link>
            <description>Looking to trade/sell away my Uncharted 4 Region for ALL.&lt;br /&gt;&lt;br /&gt;Condition: Disc is fine but there is no manual book &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;&lt;br /&gt;&lt;br /&gt;Price: RM 140&lt;br /&gt;&lt;br /&gt;Reason to sell: Got my platinum&lt;br /&gt;&lt;br /&gt;Location: Penang, i do postage as well&lt;br /&gt;&lt;br /&gt;Offer me ur price or games n i will think about it.&lt;br /&gt;[attachmentid=7778511]&lt;br /&gt;[attachmentid=7778512]&lt;br /&gt;[attachmentid=7778515]</description>
            <author>Lee8299.Gamer</author>
            <category>Games Garage Sales</category>
            <pubDate>Sat, 15 Oct 2016 15:38:32 +0800</pubDate>
        </item>
        <item>
            <title>Anyone Playing Pocket Summoner?</title>
            <link>http://forum.lowyat.net/topic/2102657</link>
            <description>&lt;a href='http://itunes.apple.com/my/app/pocket-summoner/id389297143?mt=8' target='_blank'&gt;http://itunes.apple.com/my/app/pocket-summ...d389297143?mt=8&lt;/a&gt;</description>
            <author>Lee8299.Gamer</author>
            <category>Gamers Hideout</category>
            <pubDate>Wed, 09 Nov 2011 22:09:07 +0800</pubDate>
        </item>
        <item>
            <title>Need a pro help on my code &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1893715</link>
            <description>This is my assignment( POP AND PUSH FROM STACK) , i had done it but i found some problem.&lt;br /&gt;when making the 2nd time selection, the program will crash.&lt;br /&gt;can someone tell me how to solve or edit the code to the correct 1 for me??&lt;br /&gt;thanks~~&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;#include &amp;#60;string.h&amp;#62;&lt;br /&gt;#include &amp;#60;stack&amp;#62;&lt;br /&gt;&lt;br /&gt;struct stack{&lt;br /&gt;	char *storage &amp;#91;50&amp;#93;;&lt;br /&gt;	int top;&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;bool stk_isFull&amp;#40;stack * s&amp;#41;{&lt;br /&gt;	if&amp;#40; s-&amp;#62;top == 50&amp;#41;{&lt;br /&gt; &amp;nbsp;return true;&lt;br /&gt;	}else{ &lt;br /&gt; &amp;nbsp;return false;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void stk_init&amp;#40; stack * s&amp;#41;{&lt;br /&gt;	s-&amp;#62;top = 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void stk_push&amp;#40;stack*s&amp;#41;{&lt;br /&gt;	char *item;&lt;br /&gt;	if&amp;#40;stk_isFull&amp;#40;s&amp;#41;&amp;#41;{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34;stack is full&amp;#092;n&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	}else{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34; KEY IN THE ITEM YOU WANT TO PUSH&amp;#092;n&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp;scanf&amp;#40;&amp;#34;%s&amp;#34;,&amp;amp;item&amp;#41;;&lt;br /&gt; &amp;nbsp;s-&amp;#62;storage&amp;#91;s-&amp;#62;top&amp;#93; = item;&lt;br /&gt; &amp;nbsp;&amp;#40;s-&amp;#62;top&amp;#41;++;&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34; %c has been pushed&amp;#092;n&amp;#092;n&amp;#34;,item&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;bool stk_isEmpty&amp;#40; stack*s&amp;#41;{&lt;br /&gt;	if&amp;#40;s-&amp;#62;top == 0&amp;#41;&lt;br /&gt; &amp;nbsp;return true;&lt;br /&gt;	else&lt;br /&gt; &amp;nbsp;return false;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void stk_pop&amp;#40;stack *s&amp;#41;{&lt;br /&gt;	if &amp;#40;stk_isEmpty&amp;#40;s&amp;#41;&amp;#41;{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34;Stack is Empty.&amp;#34;&amp;#41;;&lt;br /&gt;	}else{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34;%c has been popped&amp;#33;&amp;#34;,s-&amp;#62;storage&amp;#91;s-&amp;#62;top&amp;#93;&amp;#41;;&lt;br /&gt; &amp;nbsp;s-&amp;#62;top = s-&amp;#62;top - 1;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void stk_print&amp;#40;stack *s&amp;#41;{&lt;br /&gt;	int x;&lt;br /&gt;	for&amp;#40;x = s-&amp;#62;top; x &amp;#62; 0; x--&amp;#41;{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34;%d&amp;#34;,s-&amp;#62;storage&amp;#91;x&amp;#93;&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void menu&amp;#40;&amp;#41;{&lt;br /&gt;	printf&amp;#40;&amp;#34;PLEASE SELECT YOUR OPTION&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;1.PUSH&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;2.POP&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;3.DISPLAY&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;4.QUIT&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	printf&amp;#40;&amp;#34;Please Choose It&amp;#58;&amp;#34;&amp;#41;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;bool exit&amp;#40;&amp;#41;{&lt;br /&gt;	char select&amp;#91;4&amp;#93;;&lt;br /&gt;	printf&amp;#40; &amp;#34;&amp;#092;nType End To Exit &amp;#34; &amp;#41;;&lt;br /&gt;	scanf&amp;#40; &amp;#34;%s&amp;#34;, select &amp;#41;;&lt;br /&gt;	if&amp;#40; strcmp&amp;#40; select, &amp;#34;END&amp;#34;&amp;#41; == 0 &amp;nbsp;|| strcmp&amp;#40; select, &amp;#34;end&amp;#34; &amp;#41; == 0 &amp;#41;&lt;br /&gt; &amp;nbsp;return true;&lt;br /&gt;	else {&lt;br /&gt; &amp;nbsp;return false;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void main &amp;#40;&amp;#41;{&lt;br /&gt;	stack stk;&lt;br /&gt;	char *item;&lt;br /&gt;	stk_init&amp;#40;&amp;amp;stk&amp;#41;;&lt;br /&gt;	int sel;&lt;br /&gt;	menu&amp;#40;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%d&amp;#34;, &amp;amp;sel&amp;#41;;&lt;br /&gt;	while&amp;#40;1&amp;#41;{&lt;br /&gt; &amp;nbsp;switch&amp;#40;sel&amp;#41;{&lt;br /&gt; &amp;nbsp;	case 1&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp;stk_push&amp;#40;&amp;amp;stk&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;break;&lt;br /&gt; &amp;nbsp;	case 2&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp;stk_pop&amp;#40;&amp;amp;stk&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;br /&gt; &amp;nbsp;	case 3&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp;stk_print&amp;#40;&amp;amp;stk&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;break;&lt;br /&gt; &amp;nbsp;	case 4&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp;exit&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;break;&lt;br /&gt; &amp;nbsp;	default&amp;#58;&lt;br /&gt; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nNOTHING HAS BEEN CHOOSE&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;menu&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp;scanf&amp;#40;&amp;#34;%d&amp;#34;,sel&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>Lee8299.Gamer</author>
            <category>Codemasters</category>
            <pubDate>Thu, 26 May 2011 16:46:17 +0800</pubDate>
        </item>
        <item>
            <title>Any link can download WOW?</title>
            <link>http://forum.lowyat.net/topic/1678852</link>
            <description>please gv me the link.. i wan to play</description>
            <author>Lee8299.Gamer</author>
            <category>World of Warcraft</category>
            <pubDate>Thu, 16 Dec 2010 01:56:50 +0800</pubDate>
        </item>
        <item>
            <title>anyone watching [No regret] hong kong drama here?</title>
            <link>http://forum.lowyat.net/topic/1671111</link>
            <description>if u watched, you should knw the drama song rite/??&lt;br /&gt;&lt;br /&gt;let me show you something cool&amp;#33;&lt;br /&gt;&lt;br /&gt;this is EPIC&amp;#33;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[YOUTUBE]YqmpuE65BxI[/YOUTUBE]</description>
            <author>Lee8299.Gamer</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Fri, 10 Dec 2010 04:04:57 +0800</pubDate>
        </item>
        <item>
            <title>NIS2010</title>
            <link>http://forum.lowyat.net/topic/1669246</link>
            <description>is NIS2010 good for a gaming laptop?&lt;br /&gt;please gv me the download link can?&lt;br /&gt;thx verymuchh.</description>
            <author>Lee8299.Gamer</author>
            <category>Security &amp;amp; Privacy</category>
            <pubDate>Wed, 08 Dec 2010 19:25:02 +0800</pubDate>
        </item>
        <item>
            <title>Priston Tale 2</title>
            <link>http://forum.lowyat.net/topic/1663564</link>
            <description>does anyone plays Priston Tale 2 international ??&lt;br /&gt;&lt;br /&gt;</description>
            <author>Lee8299.Gamer</author>
            <category>Gamers Hideout</category>
            <pubDate>Sat, 04 Dec 2010 02:04:37 +0800</pubDate>
        </item>
        <item>
            <title>Different between cod:black ops and bbc2</title>
            <link>http://forum.lowyat.net/topic/1663374</link>
            <description>hey guy recently i play Battlefield: Bad Company 2 and i found the game is really fun&amp;#33;&lt;br /&gt;&lt;br /&gt;i wonder what is the different between Call Of Duty : Black Ops and Battlefield: Bad Company 2  as these 2 are shooting game n fight at a battle field.. &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Tell me if you guys  know,Thanks &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;!--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>Lee8299.Gamer</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Fri, 03 Dec 2010 23:13:21 +0800</pubDate>
        </item>
    </channel>
</rss>
