<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Geek Files</title>
	<link>http://www.sunilb.com</link>
	<description>I am a geek and my DNA is made up of 1s and 0s</description>
	<pubDate>Sun, 25 May 2008 08:43:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>C Tutorial - Operators in C</title>
		<link>http://www.sunilb.com/c-programming/c-tutorial-operators-in-c</link>
		<comments>http://www.sunilb.com/c-programming/c-tutorial-operators-in-c#comments</comments>
		<pubDate>Sun, 25 May 2008 08:43:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C Programming]]></category>

		<category><![CDATA[C Tutorials]]></category>

		<category><![CDATA[C Tutorial]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/c-programming/c-tutorial-operators-in-c</guid>
		<description><![CDATA[An operator is a symbol that operates on a certain data type and produces the output as the result of the operation. In C, you can combine various operators of similar or different categories and perform an operation. In this case the C compiler tries to solve the expression as per the rules of precedence.

]]></description>
			<content:encoded><![CDATA[<p>An operator is a symbol that operates on a certain data type and produces the output as the result of the operation. In C, you can combine various operators of similar or different categories and perform an operation. In this case the C compiler tries to solve the expression as per the rules of precedence.</p>
<p> <a href="http://www.sunilb.com/c-programming/c-tutorial-operators-in-c#more-89" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/c-programming/c-tutorial-operators-in-c/feed</wfw:commentRss>
		</item>
		<item>
		<title>C Tutorial - Constants, Variables and Data Type Modifiers</title>
		<link>http://www.sunilb.com/c-programming/c-tutorial-constants-variables-and-data-type-modifiers</link>
		<comments>http://www.sunilb.com/c-programming/c-tutorial-constants-variables-and-data-type-modifiers#comments</comments>
		<pubDate>Sun, 25 May 2008 07:46:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C Programming]]></category>

		<category><![CDATA[C Tutorials]]></category>

		<category><![CDATA[C Tutorial]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/c-programming/c-tutorial-constants-variables-and-data-type-modifiers</guid>
		<description><![CDATA[Constant
A constant can be defined as “a quantity that does not change during the execution of a program”.

#include &#60;stdio.h&#62;
&#160;
void main&#40;void&#41;
&#123;
        int a = 10;
        printf&#40;“%d”,a&#41;;
&#125;

Program Output
10

Here we are declaring a variable a with its initial value 10. 10 here is an [...]]]></description>
			<content:encoded><![CDATA[<h3>Constant</h3>
<p>A constant can be defined as “a quantity that does not change during the execution of a program”.</p>

<div class="wp_syntax"><div class="code"><pre class="c"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #993333;">void</span> main<span style="color: #66cc66;">&#40;</span><span style="color: #993333;">void</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
        <span style="color: #993333;">int</span> a = <span style="color: #cc66cc;">10</span>;
        <span style="color: #000066;">printf</span><span style="color: #66cc66;">&#40;</span>“%d”,a<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>Program Output<br />
10</p>
<blockquote><p>
Here we are declaring a variable a with its initial value 10. 10 here is an integer constant and every time you try to execute this program, the output will always be 10.
</p></blockquote>
<p> <a href="http://www.sunilb.com/c-programming/c-tutorial-constants-variables-and-data-type-modifiers#more-88" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/c-programming/c-tutorial-constants-variables-and-data-type-modifiers/feed</wfw:commentRss>
		</item>
		<item>
		<title>C Tutorial - Fundamental Data Types</title>
		<link>http://www.sunilb.com/c-programming/c-tutorial-fundamental-data-types</link>
		<comments>http://www.sunilb.com/c-programming/c-tutorial-fundamental-data-types#comments</comments>
		<pubDate>Thu, 22 May 2008 04:08:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C Programming]]></category>

		<category><![CDATA[C Tutorials]]></category>

		<category><![CDATA[C Tutorial]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/c-programming/c-tutorial-fundamental-data-types</guid>
		<description><![CDATA[In this C Tutorial we will learn what Fundamental Data Types are and how to use them.
We develop programs to accept an input from the user and then run the input through a series of processes and produce the output on screen or on the printer, etc. 

]]></description>
			<content:encoded><![CDATA[<p>In this <b>C Tutorial</b> we will learn what Fundamental Data Types are and how to use them.</p>
<p>We develop programs to accept an input from the user and then run the input through a series of processes and produce the output on screen or on the printer, etc. </p>
<p> <a href="http://www.sunilb.com/c-programming/c-tutorial-fundamental-data-types#more-87" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/c-programming/c-tutorial-fundamental-data-types/feed</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to C Programming</title>
		<link>http://www.sunilb.com/c-programming/introduction-to-c-programming</link>
		<comments>http://www.sunilb.com/c-programming/introduction-to-c-programming#comments</comments>
		<pubDate>Sun, 18 May 2008 14:53:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C Programming]]></category>

		<category><![CDATA[C Tutorials]]></category>

		<category><![CDATA[C Tutorial]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/c-programming/introduction-to-c-programming</guid>
		<description><![CDATA[As a programming language, C is rather like Pascal or Fortran. Values are stored in variables. Programs are structured by defining and calling functions. Program flow is controlled using loops, if statements and function calls. Input and output can be directed to the terminal or to files. Related data can be stored together in arrays [...]]]></description>
			<content:encoded><![CDATA[<p>As a programming language, C is rather like Pascal or Fortran. Values are stored in variables. Programs are structured by defining and calling functions. Program flow is controlled using loops, if statements and function calls. Input and output can be directed to the terminal or to files. Related data can be stored together in arrays or structures.</p>
<p>Of the three languages, C allows the most precise control of input and output. C is also rather more terse than Fortran or Pascal. This can result in short efficient programs, where the programmer has made wise use of C&#8217;s range of powerful operators. It also allows the programmer to produce programs which are impossible to understand.</p>
<p>Programmers who are familiar with the use of pointers (or indirect addressing, to use the correct term) will welcome the ease of use compared with some other languages. Undisciplined use of pointers can lead to errors which are very hard to trace. This course only deals with the simplest applications of pointers.</p>
<p>It is hoped that newcomers will find C a useful and friendly language. Care must be taken in using C. Many of the extra facilities which it offers can lead to extra types of programming error. You will have to learn to deal with these to successfully make the transition to being a C programmer. </p>
<p>The course aims to introduce programmers to the C language. Previous programming experience is assumed, so we can quickly progress to looking at the features of C and their uses. Students with little programming experience will need to do some homework in order to keep up with the lectures.</p>
<p> <a href="http://www.sunilb.com/c-programming/introduction-to-c-programming#more-86" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/c-programming/introduction-to-c-programming/feed</wfw:commentRss>
		</item>
		<item>
		<title>Writing Website Scrapers in PHP</title>
		<link>http://www.sunilb.com/php/writing-website-scrapers-in-php</link>
		<comments>http://www.sunilb.com/php/writing-website-scrapers-in-php#comments</comments>
		<pubDate>Tue, 26 Feb 2008 15:35:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP Code Examples]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tutorial]]></category>

		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/php/writing-website-scrapers-in-php</guid>
		<description><![CDATA[This article discusses about how to write a website scraper using PHP for web site data extraction. The concepts taught can be applied and programmed in Java, C#, etc. Basically any language that has a powerful string processing capability. This article will teach you the basics of website scraping. The article will further cover a [...]]]></description>
			<content:encoded><![CDATA[<p>This article discusses about how to write a website scraper using PHP for web site data extraction. The concepts taught can be applied and programmed in Java, C#, etc. Basically any language that has a powerful string processing capability. This article will teach you the basics of website scraping. The article will further cover a tutorial to find web ranking from Yahoo.com search engine.</p>
<p> <a href="http://www.sunilb.com/php/writing-website-scrapers-in-php#more-84" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/php/writing-website-scrapers-in-php/feed</wfw:commentRss>
		</item>
		<item>
		<title>Will &#8220;Made in India&#8221; Software Products Become a Reality?</title>
		<link>http://www.sunilb.com/general/will-made-in-india-software-products-become-a-reality</link>
		<comments>http://www.sunilb.com/general/will-made-in-india-software-products-become-a-reality#comments</comments>
		<pubDate>Wed, 20 Feb 2008 15:04:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Management]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/general/will-made-in-india-software-products-become-a-reality</guid>
		<description><![CDATA[A discussion with my friends brought about this topic. The discussion initially started with talks on the condition of Software Exports and the amount of revenue it brings to the Indian Economy as a whole. Though the Software Exports business (by way of consulting projects) has been good over the past so many years and [...]]]></description>
			<content:encoded><![CDATA[<p>A discussion with my friends brought about this topic. The discussion initially started with talks on the condition of Software Exports and the amount of revenue it brings to the Indian Economy as a whole. Though the Software Exports business (by way of consulting projects) has been good over the past so many years and have made billions of dollars for companies like Infosys, TCS, Wipro, etc., the question that we all had was about the future of the Software Exports business.</p>
<p> <a href="http://www.sunilb.com/general/will-made-in-india-software-products-become-a-reality#more-83" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/general/will-made-in-india-software-products-become-a-reality/feed</wfw:commentRss>
		</item>
		<item>
		<title>7 habits of highly effective freelance programmers</title>
		<link>http://www.sunilb.com/programming/7-habits-of-highly-effective-freelance-programmers</link>
		<comments>http://www.sunilb.com/programming/7-habits-of-highly-effective-freelance-programmers#comments</comments>
		<pubDate>Mon, 18 Feb 2008 17:45:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Management]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[experiences]]></category>

		<category><![CDATA[freelance]]></category>

		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/programming/7-habits-of-highly-effective-freelance-programmers</guid>
		<description><![CDATA[I have developed these based on my freelancing experience. Though I have discontinued freelancing, but would like to share my practices with you. These are basic practices and have been developed over time with experience (good and bad). Please feel free to leave your experiences and comment on this article.

]]></description>
			<content:encoded><![CDATA[<p>I have developed these based on my freelancing experience. Though I have discontinued freelancing, but would like to share my practices with you. These are basic practices and have been developed over time with experience (good and bad). Please feel free to leave your experiences and comment on this article.</p>
<p> <a href="http://www.sunilb.com/programming/7-habits-of-highly-effective-freelance-programmers#more-82" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/programming/7-habits-of-highly-effective-freelance-programmers/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP 5 Tutorial - Handling Exceptions in PHP5</title>
		<link>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-handling-exceptions-in-php5</link>
		<comments>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-handling-exceptions-in-php5#comments</comments>
		<pubDate>Thu, 14 Feb 2008 08:58:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP Class Examples]]></category>

		<category><![CDATA[PHP Code Examples]]></category>

		<category><![CDATA[PHP Tutorials]]></category>

		<category><![CDATA[PHP5 OOPS Tutorials]]></category>

		<category><![CDATA[PHP5]]></category>

		<category><![CDATA[PHP5 Exceptions]]></category>

		<category><![CDATA[PHP5 OOPS]]></category>

		<category><![CDATA[PHP5 Tutorials]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/php/php-tutorials/php-5-tutorial-handling-exceptions-in-php5</guid>
		<description><![CDATA[In this tutorial we will cover the following:

What is an exception?
The use of a try&#8230;catch block
Anatomy of PHP5 Exception class
Extending the Exception class
A note on unhanded exceptions


]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will cover the following:</p>
<ul>
<li>What is an exception?</li>
<li>The use of a try&#8230;catch block</li>
<li>Anatomy of PHP5 Exception class</li>
<li>Extending the Exception class</li>
<li>A note on unhanded exceptions</li>
</ul>
<p> <a href="http://www.sunilb.com/php/php-tutorials/php-5-tutorial-handling-exceptions-in-php5#more-81" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-handling-exceptions-in-php5/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP 5 Tutorial - Final Class and Methods</title>
		<link>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-final-class-and-methods</link>
		<comments>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-final-class-and-methods#comments</comments>
		<pubDate>Thu, 14 Feb 2008 06:41:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP Class Examples]]></category>

		<category><![CDATA[PHP Tutorials]]></category>

		<category><![CDATA[PHP5 OOPS Tutorials]]></category>

		<category><![CDATA[PHP5]]></category>

		<category><![CDATA[PHP5 OOPS]]></category>

		<category><![CDATA[PHP5 Tutorials]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/php/php-tutorials/php-5-tutorial-final-class-and-methods</guid>
		<description><![CDATA[In this PHP tutorial we will understand the following:

Meaning of Final Class
Meaning of Final Method
When to declare a class as final
When to declare a method as final


]]></description>
			<content:encoded><![CDATA[<p>In this PHP tutorial we will understand the following:</p>
<ul>
<li>Meaning of Final Class</li>
<li>Meaning of Final Method</li>
<li>When to declare a class as final</li>
<li>When to declare a method as final</li>
</ul>
<p> <a href="http://www.sunilb.com/php/php-tutorials/php-5-tutorial-final-class-and-methods#more-80" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/php/php-tutorials/php-5-tutorial-final-class-and-methods/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP 5 Tutorials - Static Data Members and Methods</title>
		<link>http://www.sunilb.com/php/php-tutorials/php-5-tutorials-static-data-members-and-methods</link>
		<comments>http://www.sunilb.com/php/php-tutorials/php-5-tutorials-static-data-members-and-methods#comments</comments>
		<pubDate>Tue, 12 Feb 2008 09:47:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP Class Examples]]></category>

		<category><![CDATA[PHP Tutorials]]></category>

		<category><![CDATA[PHP5 OOPS Tutorials]]></category>

		<category><![CDATA[PHP5]]></category>

		<category><![CDATA[PHP5 OOPS]]></category>

		<category><![CDATA[PHP5 Tutorials]]></category>

		<guid isPermaLink="false">http://www.sunilb.com/php/php-tutorials/php-5-tutorials-static-data-members-and-methods</guid>
		<description><![CDATA[In this tutorial you will learn all about static data members and methods

Meaning of static data members
Meaning of static methods
Defining static data members in PHP5
Defining static methods in PHP5
Accessing static data members in PHP5
Accessing static methods in PHP5
Rules to keep in mind for static methods


]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you will learn all about static data members and methods</p>
<ul>
<li>Meaning of static data members</li>
<li>Meaning of static methods</li>
<li>Defining static data members in PHP5</li>
<li>Defining static methods in PHP5</li>
<li>Accessing static data members in PHP5</li>
<li>Accessing static methods in PHP5</li>
<li>Rules to keep in mind for static methods</li>
</ul>
<p> <a href="http://www.sunilb.com/php/php-tutorials/php-5-tutorials-static-data-members-and-methods#more-79" class="more-link">(more&#8230;)</a></p>

]]></content:encoded>
			<wfw:commentRss>http://www.sunilb.com/php/php-tutorials/php-5-tutorials-static-data-members-and-methods/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
