Setting goals is the first step in turning the invisible into the visible.

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Sunday, 15 July 2012

Farenheight to Celcius Conversion

#include <stdio.h>main(){          int celcius;                    printf("Farenheight Celcius\n------------------------\n");          for (celcius = 0; celcius <= 300; celcius = celcius + 20)                   printf("%3d     =    ...

Create 2x2 Table

#include <stdio.h>#include <conio.h>main(){    int a,b;    a = 1;    b = 2;    for (a; a <= 10; a++)    {           printf("%d * %2d = %2d\n",b,a,(a*b));    }   getch(...