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
What is difference between %d and %i in c?
How can I recover the file name given an open stream or file descriptor?
What is int main () in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is difference between function overloading and operator overloading?
How do you convert strings to numbers in C?
What is a newline escape sequence?
Why do we use stdio h and conio h?
What are the advantages and disadvantages of pointers?
Explain what is the advantage of a random access file?
What is const and volatile in c?
What is the difference between typedef and #define?
What is c basic?
can anyone please tell about the nested interrupts?
how can I convert a string to a number?