Premium Blogs

Blog of the Moment

Decorating ideas guide
Decorating ideas gui..
blog listed in
(home_garden)
Article, resources, PHP5 tutorials, C Tu
visit this site for php tutorials, mysql tutorials, java tutorials, technical articles on php, java, c, c++ and general how-tos on linux and various technical stuff
Listed in Programming on position 4 and overall rank is 966
Country India
Language English
Owner sunilbhatia79
Member Since November 13, 2007
URL http://www.sunilb.com
Pagerank 0
Tags
Latest Posts on: Article, resources, PHP5 tutorials, C Tutorials, MySQL Tutorials, code samples a
Retrieved latest 5 posts at: http://www.sunilb.com/feed

C Tutorial – Operators in C

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. [...]..

Posted on 25 May 2008 | 10:43 am

C Tutorial – Constants, Variables and Data Type Modifiers

Constant A constant can be defined as “a quantity that does not change during the execution of a program”. #include <stdio.h>   void main(void) { int a = 10; printf(“%d”,a); } Program Output 10 Here we are declaring a variable a with its initial value 10. 10 here is an integer constant ..

Posted on 25 May 2008 | 9:46 am

C Tutorial – Fundamental Data Types

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. INPUT > PROCESS > OUTPUT From the [...]..

Posted on 22 May 2008 | 6:08 am

Introduction to C Programming

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 [...]..

Posted on 18 May 2008 | 4:53 pm

Writing Website Scrapers in PHP

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 [...]..

Posted on 26 February 2008 | 4:35 pm