c code to add two numbers
int n,m;
printf("%d",n+m);
how to add two numbers in c
#include <stdio.h>
int main() {
int sum_tot = 0;
int num_1, num_2;
printf("Please, Enter First integer: ");
scanf("%d", &num_1);
printf("\nNow Please, Enter Second integer: ");
scanf("%d", &num_2);
sum_tot = num_1 + num_2;
printf("\n%d + %d = %d", num_1, num_2, sum_tot);
return 0;
}
addition of two numbers in c
int num1,num2;
printf("%d",num1+num2);
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);
C program to addition of two numbers
#include <stdio.h>int main(){ int a, b, sum;printf("Enter two integers");scanf("%d %d", &a, &b);sum = a + b; printf("%d + %d = %d", a, b, sum);return 0;}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us