Answers for "how to find sum of two nums"

C
0

how to find sum of two nums

#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

Code answers related to "how to find sum of two nums"

Code answers related to "C"

Browse Popular Code Answers by Language