Pages

Tuesday, January 20, 2015

Write Programme in c to sum of two number :

#include<stdio.h>
#include<conio.h>
void main()
{
int p,b,sum=0;
printf("Enter the number :\n");
scanf("%d%d",&p&b);
sum=p+b;
printf("Result=%d",sum);
getch();
}

No comments:

Post a Comment