Write a c program to perform the addition between two integer number

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();
}

Post a Comment

0 Comments