how to add numbers without using arithmetic operators.
Answer Posted / satish gaikwad
suppose a=6 and b=3
we can write c=a-(-b)
which will give us c=9
| Is This Answer Correct ? | 5 Yes | 23 No |
Post New Answer View All Answers
Why c is called procedure oriented language?
In c programming language, how many parameters can be passed to a function ?
How do you initialize pointer variables?
Explain what is the difference between the expression '++a' and 'a++'?
What are the 4 types of organizational structures?
What are lookup tables in c?
What is putchar() function?
What are the different types of control structures?
How do we open a binary file in Read/Write mode in C?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is a method in c?
Explain what is the difference between #include and #include 'file' ?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is the use of clrscr?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)