Computer Science, asked by Nizban, 1 year ago

Write a C program that read two values using scanf() and print the addition of two values​

Answers

Answered by mohammedsharfuddin39
1

Answer:

#include<stdio.h>

int main()

{

int a,b,c;

printf("Enter a  and b values");

scanf("%d%d",&a&b);

c=a+b;

printf("The addition of a and b is %d",&c);

return 0;

}

Explanation:

Similar questions