Computer Science, asked by surya7378, 1 year ago

c program for addition of two numbers

Answers

Answered by pranavmaheshwari143
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();
}
Similar questions