Monday, October 21, 2019

Program to Add two Numbers



#include<stdio.h>
main()
{
int a,b,c;
printf("enter two numbers");
scanf("%d  %d",&a,&b);

c=a+b;
printf("%d",c);
getch();



output

10   15  
25

No comments:

Post a Comment