Monthly Archives: June 2010

C Comment and Changing of Posting Schedule


I have not written a post since last Tuesday because I’m busy with other things which are not related to the IT. During that time, I’ve been thinking about change the posting schedule for my blog to twice a day … Continue reading

Posted in Computer Programming | Tagged , , , , , | 1 Comment

C Arithmetic Operators


Similar to other programming languages, C has five arithmetic operators: + (addition) – (subtraction) * (multiplication) / (division) % (modular) If you don’t know the modular (%) operator, it’s the reminder of a division (/). For example, 15 % 6 … Continue reading

Posted in Computer Programming | Tagged , , , , , , , | Leave a comment

C string


A string is an array of char data types and terminated by a null (0) character (also know as the first character in the ASCII character set). The null character is an invisible character in the end of a string. … Continue reading

Posted in Computer Programming | Tagged , , | Leave a comment

Data Types and Data Type Modifiers for C Programming Language


Below are the fundamental (or basic) data types of C: int – used for storing integers char – used for storing individual characters float – used for storing floating point of decimal numbers double – used for storing more decimal … Continue reading

Posted in Computer Programming | Tagged , , , | Leave a comment

Linux Shell Programming Basics


I have been reading Wrox Beginning Linux Programming this week. The book mainly teaches how to programming in GNU/Linux using C. Since I’m learning the basics of C, I thought I could understand some of the materials in this book. … Continue reading

Posted in Computer Programming, GNU/Linux | Tagged , , , , | Leave a comment

Big Update


I upgraded this blog to WordPress 3.0 today and tried it. I love some of the new features for this release , especially the new theme customization options. Therefore I updated the structure and layout for the whole blog in … Continue reading

Posted in Site Updates | Tagged , , | Leave a comment

Planning to Create my Own WordPress Theme


After read about the malicious code in free WordPress themes, I have decided to learn and make my own WordPress theme after I complete the redesigning project. Since I created this blog about one year ago, I only used two … Continue reading

Posted in Site Updates, Web Development | Tagged , , | Leave a comment

NetBeans 6.9 was Released Today


I’m exited to know that latest NetBeans was released today. I happened to download 6.9 during the class at Montgomery College today. I have no idea about today’s latest release until I downloaded and installed it to the Windows XP-based … Continue reading

Posted in Computer Programming, Web Development | Tagged , , | Leave a comment

Linux movies website overview


I watched some psychology related films today because of my recent interest for multiple personality disorder (now called dissociative identity disorder). Therefore I don’t have much to write about GNU/Linux or web development. However, I’m going to talk a little … Continue reading

Posted in GNU/Linux, Open Source | Tagged , , , , , , | Leave a comment

C scanf Function


Continue from last C post, I will discuss scanf function today. The scanf function is similar to printf function with the opposite functionality. The printf function outputs the string on the screen whereas scanf function lets the user input values … Continue reading

Posted in Computer Programming | Tagged , , , | Leave a comment