store the sum of a and b in c
Answers
Answered by
0
Answer:
int main()
{
int a, b, sum;
printf("Enter two numbers to add\n");
scanf("%d%d",&a,&b);
sum = a + b;
printf("Sum of entered numbers = %d\n",sum);
return 0;
}
Similar questions
Math,
3 hours ago
English,
3 hours ago
Biology,
3 hours ago
Computer Science,
5 hours ago
Math,
5 hours ago
Computer Science,
8 months ago
Math,
8 months ago