Write a c program to print addition of two number
Answers
Answered by
1
Answer:
CLS
A-1
Print add
for 1+2
next
end
divya2340:
Not this
Answered by
3
Answer:
hay dude or babes here's your Answer
Explanation:
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);
--------Amannn---
Similar questions