Answers for "write a c program to add two numbers"

C
3

add 2 numbers in c

#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);
Posted by: Guest on December-22-2020
0

c program to add two numbers

Enter two integers: 12
11
12 + 11 = 23
Posted by: Guest on March-02-2022

Code answers related to "write a c program to add two numbers"

Code answers related to "C"

Browse Popular Code Answers by Language