Archive

Author Archive

C Tutorial – Operators in C

May 25th, 2008 admin 16 comments

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.

Read more…

Categories: C Programming, C Tutorials Tags: C Programming, C Tutorial

C Tutorial – Constants, Variables and Data Type Modifiers

May 25th, 2008 admin 3 comments

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);
}
</stdio>

Program Output
10

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.

Read more…

Categories: C Programming, C Tutorials Tags: C Programming, C Tutorial

C Tutorial – Fundamental Data Types

May 22nd, 2008 admin 1 comment

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.

Read more…

Categories: C Programming, C Tutorials Tags: C Programming, C Tutorial

Introduction to C Programming

May 18th, 2008 admin 2 comments

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.

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’s range of powerful operators. It also allows the programmer to produce programs which are impossible to understand.

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.

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.

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.

Read more…

Categories: C Programming, C Tutorials Tags: C Programming, C Tutorial

Writing Website Scrapers in PHP

February 26th, 2008 admin 24 comments

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.

Read more…

Categories: PHP, PHP Code Examples, Programming Tags: PHP, Programming, Tutorial, web programming

Will "Made in India" Software Products Become a Reality?

February 20th, 2008 admin 10 comments

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.

Read more…

Categories: Business, General, Management Tags: Business, General, Management

7 habits of highly effective freelance programmers

February 18th, 2008 admin 11 comments

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.

Read more…

Categories: C Programming, Management, PHP Class Examples, PHP5 OOPS Tutorials, Programming Tags: experiences, freelance, tips

PHP 5 Tutorial – Handling Exceptions in PHP5

February 14th, 2008 admin 1 comment

In this tutorial we will cover the following:

  • What is an exception?
  • The use of a try…catch block
  • Anatomy of PHP5 Exception class
  • Extending the Exception class
  • A note on unhanded exceptions

Read more…

Categories: PHP, PHP Class Examples, PHP Code Examples, PHP Tutorials, PHP5 OOPS Tutorials Tags: PHP5, PHP5 Exceptions, PHP5 OOPS, PHP5 Tutorials

PHP 5 Tutorial – Final Class and Methods

February 14th, 2008 admin 6 comments

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

Read more…

Categories: PHP, PHP Class Examples, PHP Tutorials, PHP5 OOPS Tutorials Tags: PHP5, PHP5 OOPS, PHP5 Tutorials

PHP 5 Tutorials – Static Data Members and Methods

February 12th, 2008 admin 2 comments

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

Read more…

Categories: PHP, PHP Class Examples, PHP Tutorials, PHP5 OOPS Tutorials Tags: PHP5, PHP5 OOPS, PHP5 Tutorials
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.