Write a C program to find the sum of any two integers
Answers
Answered by
1
Program : C Program to find sum of two numbers
- #include<stdio.h>
- int main() {
- int a, b, sum;
- prints("\nEnter two no: ");
- scanf("%d %d", &a, &b);
- sum = a + b;
- printf("Sum : %d", sum);
- return(0);
HOPE THIS HELPS YOU ❤️
Similar questions
Math,
2 months ago
Social Sciences,
2 months ago
Social Sciences,
2 months ago
Math,
9 months ago
English,
9 months ago