<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by yakming</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 17 Jun 2026 11:19:01 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTS] First Coach Ticket KL,Bangsar to SIN,Novena</title>
            <link>http://forum.lowyat.net/topic/3198683</link>
            <description>&lt;b&gt;Item(s): First Coach Ticket: KL(Bangsar) to Singapore(Novena Sq), 21 Apr 2014, 12.30PM&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes: N/A&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price: RM55 Only&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Warranty: N/A&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method: COD Only (First Come, First Serve)&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location: Bukit Damansara and Bangsar&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details: PM me (serious only please)&lt;/b&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions: N/A&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale: Have to delay the trip due to personal reason&lt;/b&gt;</description>
            <author>yakming</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sat, 19 Apr 2014 18:53:15 +0800</pubDate>
        </item>
        <item>
            <title>Problem with Function</title>
            <link>http://forum.lowyat.net/topic/934825</link>
            <description>I&amp;#39;m not good at call function, i try so hard but i fail need  &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;i need to use array as their argument in functions.&lt;br /&gt;i know pointer can solve my problem but my lecture didn&amp;#39;t teach me so i need to avoid to use that.&lt;br /&gt;btw, i need c guru explain me how to use function and how to call them &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; thx.&lt;br /&gt;&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;/* Function definition */&lt;br /&gt;&lt;br /&gt;//---------------------SUM-------------------------&lt;br /&gt;double sum&amp;#40;double num1,double num2,double num3,double num4,double num5,double num6&amp;#41;&lt;br /&gt;{&lt;br /&gt;double num&amp;#91;6&amp;#93;, sum;&lt;br /&gt;int i;&lt;br /&gt;num1 = num&amp;#91;0&amp;#93;;&lt;br /&gt;num2 = num&amp;#91;1&amp;#93;;&lt;br /&gt;num3 = num&amp;#91;2&amp;#93;;&lt;br /&gt;num4 = num&amp;#91;3&amp;#93;;&lt;br /&gt;num5 = num&amp;#91;4&amp;#93;;&lt;br /&gt;num6 = num&amp;#91;5&amp;#93;;&lt;br /&gt;sum = 0;&lt;br /&gt;i = 0;&lt;br /&gt;   do&lt;br /&gt;  {&lt;br /&gt;  	sum += num&amp;#91;i&amp;#93;;&lt;br /&gt;  	i++;&lt;br /&gt;  }&lt;br /&gt;  while&amp;#40;i&amp;#33;=6&amp;#41;;&lt;br /&gt;  return&amp;#40;sum&amp;#41;;  &lt;br /&gt;}&lt;br /&gt;//--------------------PRODUCT----------------------&lt;br /&gt;double product&amp;#40;double num1,double num2,double num3,double num4,double num5,double num6&amp;#41;&lt;br /&gt;{&lt;br /&gt;double num&amp;#91;6&amp;#93;, product;&lt;br /&gt;int i;&lt;br /&gt;num1 = num&amp;#91;0&amp;#93;;&lt;br /&gt;num2 = num&amp;#91;1&amp;#93;;&lt;br /&gt;num3 = num&amp;#91;2&amp;#93;;&lt;br /&gt;num4 = num&amp;#91;3&amp;#93;;&lt;br /&gt;num5 = num&amp;#91;4&amp;#93;;&lt;br /&gt;num6 = num&amp;#91;5&amp;#93;;&lt;br /&gt;product = 1;&lt;br /&gt;i = 0;&lt;br /&gt;   do&lt;br /&gt;  {&lt;br /&gt;  	product *= num&amp;#91;i&amp;#93;;&lt;br /&gt;  	i++;&lt;br /&gt;  }&lt;br /&gt;  while&amp;#40;i&amp;#33;=6&amp;#41;;&lt;br /&gt;  return&amp;#40;product&amp;#41;;&lt;br /&gt;&lt;br /&gt;//---------------------MAXIMUM-----------------------&lt;br /&gt;&lt;br /&gt;double maximum&amp;#40;double num1,double num2,double num3,double num4,double num5,double num6&amp;#41;&lt;br /&gt;{&lt;br /&gt;double num&amp;#91;6&amp;#93;, max;&lt;br /&gt;int i;&lt;br /&gt;num1 = num&amp;#91;0&amp;#93;;&lt;br /&gt;num2 = num&amp;#91;1&amp;#93;;&lt;br /&gt;num3 = num&amp;#91;2&amp;#93;;&lt;br /&gt;num4 = num&amp;#91;3&amp;#93;;&lt;br /&gt;num5 = num&amp;#91;4&amp;#93;;&lt;br /&gt;num6 = num&amp;#91;5&amp;#93;;&lt;br /&gt;max=num&amp;#91;0&amp;#93;;&lt;br /&gt;&lt;br /&gt;for&amp;#40;i=0;i&amp;#60;6;i++&amp;#41;&lt;br /&gt;{&lt;br /&gt;if&amp;#40;num&amp;#91;i&amp;#93;&amp;#62;max&amp;#41;&lt;br /&gt;{&lt;br /&gt;max=num&amp;#91;i&amp;#93;;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;return&amp;#40;max&amp;#41;;&lt;br /&gt;}&lt;br /&gt;//---------------------MINIMUM-----------------------&lt;br /&gt;double minimum&amp;#40;double num1,double num2,double num3,double num4,double num5,double num6&amp;#41;&lt;br /&gt;{&lt;br /&gt;double num&amp;#91;6&amp;#93;, min;&lt;br /&gt;int i;&lt;br /&gt;num1 = num&amp;#91;0&amp;#93;;&lt;br /&gt;num2 = num&amp;#91;1&amp;#93;;&lt;br /&gt;num3 = num&amp;#91;2&amp;#93;;&lt;br /&gt;num4 = num&amp;#91;3&amp;#93;;&lt;br /&gt;num5 = num&amp;#91;4&amp;#93;;&lt;br /&gt;num6 = num&amp;#91;5&amp;#93;;&lt;br /&gt;min=num&amp;#91;0&amp;#93;;&lt;br /&gt;&lt;br /&gt;for&amp;#40;i=0;i&amp;#60;6;i++&amp;#41;&lt;br /&gt;{&lt;br /&gt;if&amp;#40;num&amp;#91;i&amp;#93;&amp;#60;=min&amp;#41;&lt;br /&gt;{&lt;br /&gt;min=num&amp;#91;i&amp;#93;;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;return&amp;#40;min&amp;#41;;&lt;br /&gt;}&lt;br /&gt;void main&amp;#40;void&amp;#41;&lt;br /&gt;{&lt;br /&gt;	double num&amp;#91;6&amp;#93;, num_1, num_2, num_3, num_4, num_5, num_6;&lt;br /&gt;	double maximum, minimum, sum, product;&lt;br /&gt;	int i;&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;Please enter 6 values&amp;#58; &amp;#34;&amp;#41;;&lt;br /&gt;	for&amp;#40;i=0; i&amp;#60;6;i++&amp;#41;&lt;br /&gt;	{&lt;br /&gt;  scanf&amp;#40;&amp;#34;%lf&amp;#34;, &amp;amp;num&amp;#91;i&amp;#93;&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;num_1 = num&amp;#91;0&amp;#93;;&lt;br /&gt;num_2 = num&amp;#91;1&amp;#93;;&lt;br /&gt;num_3 = num&amp;#91;2&amp;#93;;&lt;br /&gt;num_4 = num&amp;#91;3&amp;#93;;&lt;br /&gt;num_5 = num&amp;#91;4&amp;#93;;&lt;br /&gt;num_6 = num&amp;#91;5&amp;#93;;&lt;br /&gt;sum = sum&amp;#40;num_1, num_2, num_3, num_4, num_5, num_6&amp;#41;;&lt;br /&gt;product = product&amp;#40;num_1, num_2, num_3, num_4, num_5, num_6&amp;#41;;&lt;br /&gt;maximum = maximum&amp;#40;num_1, num_2, num_3, num_4, num_5, num_6&amp;#41;;&lt;br /&gt;minimum = minimum&amp;#40;num_1, num_2, num_3, num_4, num_5, num_6&amp;#41;;&lt;br /&gt;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nThe sum of the value is&amp;#58; %lf&amp;#34;,sum&amp;#41;;&lt;br /&gt;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nThe product of the value is&amp;#58; %lf&amp;#34;,product&amp;#41;;&lt;br /&gt;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nMaximum number is %lf &amp;#34;,maximum&amp;#41;;&lt;br /&gt;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nMinimum number is %lf &amp;#092;n&amp;#092;n&amp;#34;,minimum&amp;#41;;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>yakming</author>
            <category>Codemasters</category>
            <pubDate>Fri, 13 Feb 2009 14:00:38 +0800</pubDate>
        </item>
        <item>
            <title>C Array Help</title>
            <link>http://forum.lowyat.net/topic/843955</link>
            <description>Hey guys i need 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;how do u guys get the character from keyboard and show by using scanf and getchar() in array?&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;#define STOP &amp;#39;&amp;#092;n&amp;#39;&lt;br /&gt;void main&amp;#40;void&amp;#41;&lt;br /&gt;{&lt;br /&gt;	int i,a;&lt;br /&gt;	static char greeting&amp;#91;&amp;#93; = {getchar&amp;#40;&amp;#41;};&lt;br /&gt;	for&amp;#40;i=0; getchar&amp;#40;&amp;#41;&amp;#33;=STOP;i++&amp;#41;&lt;br /&gt;;&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nYour input characters is&amp;#58; &amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;    for&amp;#40;a=0; a&amp;#60;i; a++&amp;#41;&lt;br /&gt;	{&lt;br /&gt;  printf&amp;#40;&amp;#34;%c&amp;#34;,greeting&amp;#91;a&amp;#93;&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;i only get the 1st word but others come with wired character  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&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;void main&amp;#40;void&amp;#41;&lt;br /&gt;{&lt;br /&gt;	&lt;br /&gt;	static char a,greeting&amp;#91;&amp;#93;= {a};&lt;br /&gt;	printf&amp;#40;&amp;#34;Please input any characters&amp;#58; &amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%c&amp;#34;,&amp;amp;a&amp;#41;;	&lt;br /&gt;	printf&amp;#40;&amp;#34;&amp;#092;n&amp;#092;nYour input characters is&amp;#58; %c&amp;#092;n&amp;#34;,greeting&amp;#41;;&lt;br /&gt;	&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;this worse i can&amp;#39;t get anything  &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Please guide me if any C guru around..thx u&lt;br /&gt;btw, i&amp;#39;m using microsoft visual studio 2008.</description>
            <author>yakming</author>
            <category>Codemasters</category>
            <pubDate>Thu, 13 Nov 2008 00:08:23 +0800</pubDate>
        </item>
        <item>
            <title>Fixed Number Dialing Active</title>
            <link>http://forum.lowyat.net/topic/682887</link>
            <description>Hey Everyone,I just got my iphone yesterday and unlocked/activate/jailbreak with (winpwn/bootneuter)ver 1.1.4 , modem firmware 04.04.05_G.when i use celcom 3G simcard the message fixed number dialing active popup and no carrier or signal..nothing.&lt;br /&gt;&lt;br /&gt;But,when i use my old maxis prepaid simcard it works like charm.&lt;br /&gt;&lt;br /&gt;Is there any way to fix or trick it so it can work with my celcom 3G simcard?I googling alot but found no solution for this issue.&lt;br /&gt;&lt;br /&gt;Hope you guyz can help me to fix it before i&amp;#39;m going to celcom centre asking for help..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>yakming</author>
            <category>iPhone</category>
            <pubDate>Sat, 26 Apr 2008 18:26:35 +0800</pubDate>
        </item>
    </channel>
</rss>
