Tuesday, 27 September 2011

addition of 2 number

#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
printf("emter the a and b");
scanf("%d %d ",&a,&b);
c=a+b;
printf("c is %d",c);
getch();
return 0;
}

No comments:

Post a Comment