write a program in C language. Input two number and print their sum
Answers
Answered by
1
Answer:
Program : C Program to find sum of two numbers
#include<stdio.h>
int main() {
int a, b, sum;
printf("\nEnter two no: ");
scanf("%d %d", &a, &b);
sum = a + b;
printf("Sum : %d", sum);
return 0
Similar questions
Math,
14 hours ago
Math,
14 hours ago
Math,
14 hours ago
Math,
8 months ago
Social Sciences,
8 months ago