Wednesday, 2 January 2013

How To Calculate Sum of Two numbers in C


Here I Tell You How To Calculate Sum Of two number by Using C
You Can see this Blue Colour Source Code
And Try it
I hope You Enjoy It




#include<conio.h>
#include<stdio.h>
main()
{
clrscr();
int a,b,c;
printf("Enter A\n");
scanf("%d",&a);
printf("Enter B\n");
scanf("%d",&b);
c=a+b;
printf("Sum Of A And B Is = %d",c);
getch();
}

No comments:

Post a Comment