Addition between two integer number
#include<stdio.h>
#include<conio.h>
main()
{
int x,y,z=0;
printf("enter two integer number");
scanf("%d%d",&x,&y);
z=x+y;
printf("%d",z);
getch();
}
#include<stdio.h>
#include<conio.h>
main()
{
int x,y,z=0;
printf("enter two integer number");
scanf("%d%d",&x,&y);
z=x+y;
printf("%d",z);
getch();
}
0 Comments