Posts

Showing posts from July 28, 2013

Addition of Two Numbers

/* Addition of Two Numbers.. */ #include<stdio.h> int main() { int a, b, sum; printf("Pls type The First Number: \n"); scanf("%d",&a); printf("Pls type the 2nd Number: \n"); scanf("%d",&b);   sum = a + b;   printf("Sum of Entered Numbers= %d\n", sum); getch(); return 0; }

Reverse The Enter 3 digit number… A program of C..

Reverse The Enter 3 digit number…