#include <stdio.h>
#include <conio.h>
void main()
{
int a,b,c;
printf("Enter two integer to add numbers :\n");
scanf("%d%d", &a,&b);
c = a + b;
printf("Sum of %d + %d = %d\n", a, b, c);
getch();
}
Detailed Software Testing Tutorials and Interview Questions.
0 comments:
Post a Comment