<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by Vladius</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Thu, 18 Jun 2026 18:07:08 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>SOLD</title>
            <link>http://forum.lowyat.net/topic/3492328</link>
            <description>SOLD</description>
            <author>Vladius</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sat, 07 Feb 2015 01:17:30 +0800</pubDate>
        </item>
        <item>
            <title>architecture course?</title>
            <link>http://forum.lowyat.net/topic/1177593</link>
            <description>i&amp;#39;m thinking to take architecture course.  is the architecture subject very hard?&lt;br /&gt;which is the best uni to go for it? &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;</description>
            <author>Vladius</author>
            <category>Education Essentials</category>
            <pubDate>Tue, 29 Sep 2009 00:44:42 +0800</pubDate>
        </item>
        <item>
            <title>speaker dilema</title>
            <link>http://forum.lowyat.net/topic/988617</link>
            <description>i&amp;#39;m looking to get new speaker within the budget of Rm600 and below. what is my best option??i&amp;#39;m more into the treble of  the sound but never the less im sort of into the bass too.,, p/s i dun k how it looks.. just good quality sound&amp;#33;&amp;#33; &lt;!--emo&amp;B]--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>Vladius</author>
            <category>Hardware</category>
            <pubDate>Mon, 06 Apr 2009 00:01:03 +0800</pubDate>
        </item>
        <item>
            <title>wta - high temp processor</title>
            <link>http://forum.lowyat.net/topic/903798</link>
            <description>i just bought my new processor. when i install it and run the cpu, the temp isover 100c.&lt;br /&gt;i already check my thermal paste, try differnt heat sink, the temp is still the same. &lt;br /&gt;when i switch back to my old  procer, the temp is normal.&lt;br /&gt;why? is it spoil? the new processor is c2q q9550 and the old one is dual core e2140.</description>
            <author>Vladius</author>
            <category>Technical Support</category>
            <pubDate>Sun, 11 Jan 2009 21:51:41 +0800</pubDate>
        </item>
        <item>
            <title>c code</title>
            <link>http://forum.lowyat.net/topic/787503</link>
            <description>can anyone help me to find what&amp;#39;s wrong with this code. the only output that i get is &amp;quot;error in open examdata.txt or key.txt&amp;quot;&lt;br /&gt;i already have the text file with the source 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;#define TOTALQUESTIONS 10&lt;br /&gt;&lt;br /&gt;void checkfiles(FILE *key, FILE *examdata)&lt;br /&gt;{&lt;br /&gt;    if (examdata.txt==NULL||key.txt==NULL)&lt;br /&gt;    {&lt;br /&gt;        printf(&amp;quot;error in open examdata.txt or key.txt&amp;quot;);&lt;br /&gt;&lt;br /&gt;        return(1);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void readanswerkey(FILE *key,char answers[TOTALQUESTIONS+1])&lt;br /&gt;{&lt;br /&gt;    int counter;&lt;br /&gt;    printf(&amp;quot;Question:&amp;quot;);&lt;br /&gt;&lt;br /&gt;    for (counter=1;counter&amp;lt;=TOTALQUESTIONS;counter++)&lt;br /&gt;    {&lt;br /&gt;        printf(&amp;quot;%2d&amp;quot;,counter);&lt;br /&gt;    }&lt;br /&gt;    printf(&amp;quot;&amp;#092;answer:&amp;quot;);&lt;br /&gt;&lt;br /&gt;    fgets(answers, TOTALQUESTIONS+1,key);&lt;br /&gt;&lt;br /&gt;    for (counter=0;counter&amp;lt;TOTALQUESTIONS; counter++)&lt;br /&gt;    {&lt;br /&gt;        printf(&amp;quot;%c&amp;quot;, answers[counter]);&lt;br /&gt;    }&lt;br /&gt;    printf(&amp;quot;&amp;#092;n&amp;#092;n&amp;quot;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void grading(FILE *examdata, char answers[TOTALQUESTIONS+1], int answermarks[TOTALQUESTIONS])&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;    int counter ;&lt;br /&gt;    int studentID;&lt;br /&gt;    char studentanswers[TOTALQUESTIONS+1];&lt;br /&gt;    int studentscore=0;&lt;br /&gt;&lt;br /&gt;    printf(&amp;quot;student ID&amp;#092;tscore(%%)&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;    while (fscanf(examdata, &amp;quot;%d%s&amp;quot;, &amp;amp;studentID, &amp;amp;studentanswers)&amp;#33;=EOF)&lt;br /&gt;    {&lt;br /&gt;        studentscore=0;&lt;br /&gt;            for (counter=0; counter&amp;lt;TOTALQUESTIONS;counter++)&lt;br /&gt;            {&lt;br /&gt;                if (answers[counter]==studentanswers[counter])&lt;br /&gt;                {&lt;br /&gt;                    answermarks[counter]++;&lt;br /&gt;&lt;br /&gt;                    studentscore++;&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;            &lt;br /&gt;            printf(&amp;quot;%d&amp;#092;t&amp;#092;t%d&amp;#092;n&amp;quot;, studentID, (100*studentscore/TOTALQUESTIONS));&lt;br /&gt;    }&lt;br /&gt;printf(&amp;quot;&amp;#092;n&amp;#092;n&amp;quot;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void statistics(int answermarks[TOTALQUESTIONS])&lt;br /&gt;{&lt;br /&gt;    int counter;&lt;br /&gt;&lt;br /&gt;    printf(&amp;quot;Questions: &amp;quot;);&lt;br /&gt;&lt;br /&gt;    for (counter=1; counter&amp;lt;=TOTALQUESTIONS; counter++)&lt;br /&gt;    {&lt;br /&gt;        printf(&amp;quot;%d&amp;quot;, answermarks[counter]);&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;    printf(&amp;quot;&amp;#092;n&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;    FILE * key = NULL;&lt;br /&gt;    FILE * examdata = NULL;&lt;br /&gt;    &lt;br /&gt;    char answers[TOTALQUESTIONS+1];&lt;br /&gt;    int answermarks[TOTALQUESTIONS]={0};&lt;br /&gt;&lt;br /&gt;    key = fopen(&amp;quot;key.txt&amp;quot;, &amp;quot;r&amp;quot;);&lt;br /&gt;&lt;br /&gt;    checkfiles(key,examdata);&lt;br /&gt;    printf(&amp;quot;EXAM REPORT&amp;#092;n&amp;#092;n&amp;quot;);&lt;br /&gt;&lt;br /&gt;    readanswerkey(key,answers);&lt;br /&gt;    grading(examdata, answers, answermarks);&lt;br /&gt;    statistics(answermarks);&lt;br /&gt;&lt;br /&gt;    printf(&amp;quot;End.&amp;#092;n&amp;quot;);&lt;br /&gt;    &lt;br /&gt;    fclose(key);&lt;br /&gt;    fclose(examdata);&lt;br /&gt;&lt;br /&gt;    return(0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;</description>
            <author>Vladius</author>
            <category>Codemasters</category>
            <pubDate>Tue, 09 Sep 2008 21:18:51 +0800</pubDate>
        </item>
    </channel>
</rss>
