how to add numbers without using arithmetic operators.
Answer Posted / dally
#include<stdio.h>
int main()
{
int a=3,b=5;
while(a--)
b = b++;
printf("%d\n");
}
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
Explain what is the difference between null and nul?
number of times a digit is present in a number
What is the general form of function in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Are there any problems with performing mathematical operations on different variable types?
Can 'this' pointer by used in the constructor?
Write a program to reverse a given number in c?
How can I list all of the predefined identifiers?
Explain how can you avoid including a header more than once?
Why do we use int main instead of void main in c?
What is operator precedence?
What is a file descriptor in c?
Write a code on reverse string and its complexity.
What is the use of ?: Operator?