<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by kerosan89</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Thu, 02 Jul 2026 08:51:18 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTA]shutter part</title>
            <link>http://forum.lowyat.net/topic/2347633</link>
            <description>hi..&lt;br /&gt;&lt;br /&gt;how much did cost me to change the shutter part for eos 550D?&lt;br /&gt;anyone?&lt;br /&gt;</description>
            <author>kerosan89</author>
            <category>Photography, Digital Imaging &amp;amp; Video</category>
            <pubDate>Tue, 15 May 2012 19:49:43 +0800</pubDate>
        </item>
        <item>
            <title>result does not come out..</title>
            <link>http://forum.lowyat.net/topic/2005907</link>
            <description>hi all..&lt;br /&gt;i wondering, why my result does not come out after i enter a value..&lt;br /&gt;is there anything wrong with my code?&lt;br /&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;stdlib.h&amp;gt;&lt;br /&gt;#include&amp;lt;math.h&amp;gt;&lt;br /&gt;#define p printf&lt;br /&gt;#define s scanf&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;int weight,height;&lt;br /&gt;float bmire;&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please enter your weight: &amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%i&amp;quot;,&amp;amp;weight);&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please enter your height: &amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%i&amp;quot;,&amp;amp;height);&lt;br /&gt;&lt;br /&gt;bmire = (weight/(height*height));&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Your bmi is: %.4f&amp;#092;n&amp;quot;,bmire);&lt;br /&gt;&lt;br /&gt;if(bmire &amp;lt;=18.5)&lt;br /&gt;{&lt;br /&gt;	p(&amp;quot;Underweight&amp;#092;n&amp;quot;);&lt;br /&gt;	p(&amp;quot;Please gains some weight&amp;#092;n&amp;quot;);&lt;br /&gt;}&lt;br /&gt;else if(bmire &amp;gt;=18.6 &amp;amp;&amp;amp; bmire &amp;lt;=24.9)&lt;br /&gt;{&lt;br /&gt;	p(&amp;quot;Normal&amp;#092;n&amp;quot;);&lt;br /&gt;	p(&amp;quot;You are healthy&amp;#092;n&amp;quot;);&lt;br /&gt;}&lt;br /&gt;else if(bmire &amp;gt;=25 &amp;amp;&amp;amp; bmire&amp;lt;=29.9)&lt;br /&gt;{&lt;br /&gt;	p(&amp;quot;Overweight&amp;#092;n&amp;quot;);&lt;br /&gt;	p(&amp;quot;Please lose some weight&amp;#092;n&amp;quot;);&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;	p(&amp;quot;Obese&amp;#092;n&amp;quot;);&lt;br /&gt;	p(&amp;quot;You are not healthy, Please do exercise for your health&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;return 0;&lt;br /&gt;&lt;br /&gt;}</description>
            <author>kerosan89</author>
            <category>Codemasters</category>
            <pubDate>Sun, 21 Aug 2011 11:13:53 +0800</pubDate>
        </item>
        <item>
            <title>help me..this error keep coming out..</title>
            <link>http://forum.lowyat.net/topic/2001536</link>
            <description>hi all codemaster guru..&lt;br /&gt;&lt;br /&gt;i&amp;#39;m new in C language..&lt;br /&gt;and i have some problem that related to C languange..&lt;br /&gt;here are my coding for reference..&lt;br /&gt;so when i try to compile this coding..&lt;br /&gt;&lt;br /&gt;linearequa.c:22:29: error: expected ‘)’ before ‘;’ token&lt;br /&gt;linearequa.c:31:1: error: expected declaration or statement at end of input&lt;br /&gt;&lt;br /&gt;so this error was always coming out..&lt;br /&gt;i try to fixed the problem..but the error are still coming out..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;math.h&amp;gt;&lt;br /&gt;#include&amp;lt;stdlib.h&amp;gt;&lt;br /&gt;#define p printf&lt;br /&gt;#define s scanf&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;long long int a,b,c;&lt;br /&gt;float r1,r2;&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please enter the b value: &amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%lli&amp;quot;,&amp;amp;b);&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please enter the a value: &amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%lli&amp;quot;,&amp;amp;a);&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please enter the c value: &amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%lli&amp;quot;,&amp;amp;c);&lt;br /&gt;&lt;br /&gt;r1=(-b+sqrt(b*b-4*a*c)/(2*a);&lt;br /&gt;r2=(-b-sqrt(b*b-4*a*c)/(2*a);&lt;br /&gt;&lt;br /&gt;p(&amp;quot;The first answer is: %f&amp;#092;n&amp;quot;,&amp;amp;r1);&lt;br /&gt;p(&amp;quot;The second answer is: %f&amp;#092;n&amp;quot;,&amp;amp;r2);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;</description>
            <author>kerosan89</author>
            <category>Codemasters</category>
            <pubDate>Wed, 17 Aug 2011 20:16:11 +0800</pubDate>
        </item>
        <item>
            <title>Help me..warning: comparison between pointer and i</title>
            <link>http://forum.lowyat.net/topic/1994417</link>
            <description>hi..i have some problem..&lt;br /&gt;actually i doing my coding for C..&lt;br /&gt;here are my coding..but when i try to compile it at the terminal..&lt;br /&gt;it show me an error.. &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; &lt;br /&gt;the error is at the end of the post...&lt;br /&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include&amp;lt;stdlib.h&amp;gt;&lt;br /&gt;#include&amp;lt;string.h&amp;gt;&lt;br /&gt;#define s scanf&lt;br /&gt;#define p printf&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;long long int icnum;&lt;br /&gt;char month[12],state[16];&lt;br /&gt;int a,b,c,dd,mm,yy,ss;&lt;br /&gt;char gender;&lt;br /&gt;&lt;br /&gt;p(&amp;quot;Please Enter Your IC number :&amp;#092;n&amp;quot;);&lt;br /&gt;s(&amp;quot;%lli&amp;quot;,&amp;amp;icnum);&lt;br /&gt;&lt;br /&gt;c=icnum%10000;&lt;br /&gt;b=icnum/10000%100;&lt;br /&gt;a=icnum/10000/100;&lt;br /&gt;&lt;br /&gt;dd=a%100;&lt;br /&gt;mm=a/100%100;&lt;br /&gt;yy=a/100/100;&lt;br /&gt;ss=b;&lt;br /&gt;&lt;br /&gt;if(mm==1)&lt;br /&gt;strcpy(month,&amp;quot;January&amp;quot;);&lt;br /&gt;else if(mm==2)&lt;br /&gt;strcpy(month,&amp;quot;February&amp;quot;);&lt;br /&gt;else if(mm==3)&lt;br /&gt;strcpy(month,&amp;quot;March&amp;quot;);&lt;br /&gt;else if(mm==4)&lt;br /&gt;strcpy(month,&amp;quot;April&amp;quot;);&lt;br /&gt;else if(mm==5)&lt;br /&gt;strcpy(month,&amp;quot;May&amp;quot;);&lt;br /&gt;else if(mm==6)&lt;br /&gt;strcpy(month,&amp;quot;June&amp;quot;);&lt;br /&gt;else if(mm==7)&lt;br /&gt;strcpy(month,&amp;quot;July&amp;quot;);&lt;br /&gt;else if(mm==8)&lt;br /&gt;strcpy(month,&amp;quot;August&amp;quot;);&lt;br /&gt;else if(mm==9)&lt;br /&gt;strcpy(month,&amp;quot;September&amp;quot;);&lt;br /&gt;else if(mm==10)&lt;br /&gt;strcpy(month,&amp;quot;October&amp;quot;);&lt;br /&gt;else if(mm==11)&lt;br /&gt;strcpy(month,&amp;quot;November&amp;quot;);&lt;br /&gt;else if(mm==12)&lt;br /&gt;strcpy(month,&amp;quot;December&amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if(state==1)&lt;br /&gt;strcpy(state,&amp;quot;Johor&amp;quot;);&lt;br /&gt;else if(state==2)&lt;br /&gt;strcpy(state,&amp;quot;Kedah&amp;quot;);&lt;br /&gt;else if(state==3)&lt;br /&gt;strcpy(state,&amp;quot;Kelantan&amp;quot;);&lt;br /&gt;else if(state==4)&lt;br /&gt;strcpy(state,&amp;quot;Melaka&amp;quot;);&lt;br /&gt;else if(state==5)&lt;br /&gt;strcpy(state,&amp;quot;Negeri Sembilan&amp;quot;);&lt;br /&gt;else if(state==6)&lt;br /&gt;strcpy(state,&amp;quot;Pahang&amp;quot;);&lt;br /&gt;else if(state==7)&lt;br /&gt;strcpy(state,&amp;quot;Pulau Pinang&amp;quot;);&lt;br /&gt;else if(state==8)&lt;br /&gt;strcpy(state,&amp;quot;Perak&amp;quot;);&lt;br /&gt;else if(state==9)&lt;br /&gt;strcpy(state,&amp;quot;Perlis&amp;quot;);&lt;br /&gt;else if(state==10)&lt;br /&gt;strcpy(state,&amp;quot;Selangor&amp;quot;);&lt;br /&gt;else if(state==11)&lt;br /&gt;strcpy(state,&amp;quot;Terengganu&amp;quot;);&lt;br /&gt;else if(state==12)&lt;br /&gt;strcpy(state,&amp;quot;Sabah&amp;quot;);&lt;br /&gt;else if(state==13)&lt;br /&gt;strcpy(state,&amp;quot;Sarawak&amp;quot;);&lt;br /&gt;else if(state==14)&lt;br /&gt;strcpy(state,&amp;quot;Kuala Lumpur&amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;return 0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;error that i get&lt;br /&gt;&lt;br /&gt;icprog.c: In function ‘main’:&lt;br /&gt;icprog.c:52:9: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:54:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:56:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:58:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:60:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:62:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:64:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:66:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:68:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:70:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:72:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:74:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:76:14: warning: comparison between pointer and integer&lt;br /&gt;icprog.c:78:14: warning: comparison between pointer and integer&lt;br /&gt;</description>
            <author>kerosan89</author>
            <category>Codemasters</category>
            <pubDate>Thu, 11 Aug 2011 22:37:06 +0800</pubDate>
        </item>
    </channel>
</rss>
