/*Summation Of Two Number*/
/* Suchetan Dey */
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
printf("Enter The Number Of A ");
scanf("%d",&a);
printf("Enter The Number Of B ");
scanf("%d",&b);
c=a+b;
printf("The Summation Is %d",c);
getch();
}
The Output is :-
No comments:
Post a Comment