Answers for "c add two double"

1

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;
}
Posted by: Guest on July-24-2021
0

adding integers and double in c

#include <stdio.h>
int main(void)
{
	int a, b, int_sum;
    double c, d, decimal_sum;
    
    printf("Enter two integers: "); 
    scanf("%i%i", &a, &b);
    
    int_sum = a + b;
  
 	printf("Enter two decimal numbers: ");
	scanf("%lf%lf", &c, &d);
  
 	decimal_sum = c + d;
  
  	printf("The sum of a + b is %inThe sum of c + d is %lf", int_sum, decimal_sum);
  
  	return 0;
}
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language