answersLogoWhite

0


Best Answer

The sum.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

the sum

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you call the result of adding two numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you write c program using command line arguments for adding two numbers?

#include<stdio.h> #include<process.h> #include<stdlib.h> void main(int argc, char *argv[]) { int i,result=0; if(argc<3) { puts("Enter atleast two numbers!!"); exit(1); } else { for(i=0;i<argc;i++) result+=atoi(argv[i]); } printf("Result is %d",result); }


Program in 'c' to find the LCM of any given five numbers?

Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.Just write a method or function that calculates the LCM for two numbers at a time. Then calculate the LCM for the first two numbers, get the LCM of the result with the third number, etc.


Is mixing the same as amplitude modulation?

No, mixing is adding two signals together, modulation is more like multiplying two signals. IN mixing, the result has the same frequencies as the input signals. In modulation, the result is the sum and difference frequencies.


How do you detect overflow when adding two numbers in 2s complement form?

You can detect overflow if the result turns out to be negative (which is the same as checking to see if the sign bit is 1). For example if you tried to add 5 and 6 in to 4-bit 2s complement, you would get 0101 + 0110 = 1011, which is a negative number since the sign bit (the 1 on the left) is a 1. This is an overflow.


How do you find the greatest of three numbers using ternery operator?

Compare the first two numbers with the ternary operator. Store the result in a temporary variable. Compare the temporary variable with the third number, again using the ternary operator.