Computer Science, asked by ashwininagineni, 5 hours ago

store the sum of a and b in c​

Answers

Answered by sakshimachhar1710
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