The first step toward success is taken when you refuse to be a captive of the environment in which you first find yourself.

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, 22 July 2012

Adding Numbers

#include <stdio.h>#include <conio.h>void main(){   int a,b,c;   printf("Enter two integer to add numbers :\n");   scanf("%d%d", &a,&b);   c = a + b;   printf("Sum of %d + %d = %d\n", a, b, c);   getch(...

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(...