1 plus 1 = 2
100
easy, 1011. in binary of course. convert 1011 binary to decimal you get 11.
1 x 8 plus 0 x 4 plus 0 x 2 plus 1 x 1. Total 9
111011000 (decimal 472). The sum is 257+215.
1 plus 1 = 2
2 decimal, or 10 binary.
100
1 plus 1 = 2
yes it can very much so read binary.
Two, which is denoted as 2, except in binary, where it is denoted 10 2
This will be in binary arithmetic, i.e. base 2 arithmetic.
There is no unary plus in C, but if there were, it would have only one operand, unlike the binary plus which has two: x = a + b; /* binary plus */ x = + b; /* unary plus -- not in C*/ x = a - b; /* unary plus */ x = - b; /* unary minus */
#include<stdio.h> #include<stdlib.h> main() { int number,binary[10000],b=0; printf("Enter decimal number "); scanf("%d",&number); printf("\nBinary: "); for(;number;number/=2,b++) binary[b]=number%2; for(b--;b>-1;b--) printf("%d ",binary[b]); }
Normal decimal numbers are based on powers of 10. The individual digits are (from right to left):ones (10^0),tens (10^1),hundreds (10^2),etc.So, 365 is really 5 ones, plus 6 tens, plus 3 hundreds. 5 + 60 + 300 = 365Binary numbers are based on powers of two. The individual bits (Binary digITS) are:ones (2^0),twos (2^1),fours (2^2),eights (2^3),etc.So, your binary 00110 is really 0 ones, plus 1 twos, plus 1 fours. 0 + 2 + 4 = 6 your 00110 binary is equal to 6 decimal.
1 + 1 = 10 in binary numbers.
easy, 1011. in binary of course. convert 1011 binary to decimal you get 11.