c program for addition of two numbers
Answers
Answered by
3
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
printf("enter any two numbers");
scanf("℅d℅d",&a,&b);
c=a+b;
printf("sum of two numbers=℅d,c");
getch();
}
#include<conio.h>
void main()
{
int a,b,c;
printf("enter any two numbers");
scanf("℅d℅d",&a,&b);
c=a+b;
printf("sum of two numbers=℅d,c");
getch();
}
Similar questions