Home » Archive

Articles Archive for July 2009

Moto GP, The Game »

[19 Jul 2009 | No Comment | Posted By:Dileep]
Alice Motorrad Grand Prix Deutschland

It’s 101 and counting! That’s the news from Sachsenring, Germany where Valentino Rossi denied teammate Jorge Lorenzo victory yet again. Thereby, he brought-up his 101st grand prix victory. All four contenders for the season’s world championship were fighting for victory today, and finally the Yamaha boys and Dani Pedrossa made the rostrum. Casey Stoner finished 4th and towards the end of the race, he had to ease-off as he was struggling with tyre wear. Lorenzo didn’t give-in easily and Rossi had to bring all his genius and experience into play …

Read the full Post »

Car, Car And Bike Corner »

[17 Jul 2009 | No Comment | Posted By:Dileep]
A ‘Nano’ Addition To The Roads

The Tata Nano has finally hit the roads. The keys of the first few Nano’s were handed over to the chosen ones, in a high-profile event in Mumbai today evening. The first 1,00,000 owners of the Nano were selected through a computerised random selection process, from amongst the 2,06,703 final list of applicants who had booked the car. Mr. Ashok Raghunath Vichare of Mumbai became the first owner of a Nano in India, as the Chairman of Tata Sons and Tata Motors, Mr. Ratan N. Tata did the honors. Mr. Ashok Raghunath Vichare received the Tata Nano LX of the Lunar Silver colour, as per his choice.

Read the full Post »

Tech Corner, Tech Talk »

[17 Jul 2009 | No Comment | Posted By:Vivek]

The ever growing populaion of internet users have resuled in a number of new web browsers being launched by different companies over the past two years.Updated versions of the Firefox and Google Chrome have arrived.Microsoft have also made updates to its Internet Explorer and so has Apple and others.Now if you thought that this huge increase in the number of internet users will prompt only a browser war,you might be just wrong.This may just provide some headaches to the bosses in Microsoft as Google has announced the Google Chrome Operating …

Read the full Post »

C and C++, Tech Corner »

[16 Jul 2009 | No Comment | Posted By:Dileep]

Operators are used to carryout the arithmetic and logical operations.
Operators act as connectors.
The values that can be operated by these operators are called operands.
C operators – unary operators, binary operators, ternary operators.

An operator that acts upon only one operand is known as a unary operator.
Egs – unary minus, logical NOT, bitwise complementation.

Binary operators act upon two operands.
Classified into four – arithmetic operators, logical operators, relational operators, bitwise operators.

Arithmetic operators are used to perform basic arithmetic operations such as addition, subtraction, multiplication and division.
An expression involving arithmetic operators is called an arithmetic …

Read the full Post »

C and C++, Tech Corner »

[15 Jul 2009 | No Comment | Posted By:Dileep]

Data can be provided to the program variables in two ways – non-interactive method & interactive input method.
stdio – standard input-output libraray.
Two types of i/o functions - Formatted i/o functions & Unformatted i/o functions

scanf() – formatted i/p function.
scanf(“control-string”, address_list);
scanf(“%[^\n]“, message); //go on typing any ASCII printable characters till the new line(\n) character is pressed.

printf() – formatted o/p function.
printf(“control-string”, address_list);

Unformatted input functions – getchar(), gets()
Unformatted output functions – putchar(), puts()

Program 1
//C program to accept 3 numbers and compute their sum and average
#include<stdio.h>
void main()
{
int num1,num2,num3,sum;
float averag;
printf(“Enter Three Numbers\n”);
scanf(“%d %d %d”,&num1,&num2,&num3);
sum=num1+num2+num3;
averag=sum/3.0;
printf(“Sum = %d\nAverage = %f\n”,sum,averag);
}
Program 2
/*Program …

Read the full Post »