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 built-in function?
Which is better between malloc and calloc?
Do you know the use of fflush() function?
What do you understand by normalization of pointers?
What is c programming structure?
What is a volatile keyword in c?
What are pointers? What are different types of pointers?
Explain the properties of union.
Define the scope of static variables.
Can you tell me how to check whether a linked list is circular?
What is default value of global variable in c?
How can I trap or ignore keyboard interrupts like control-c?
What is the difference between mpi and openmp?
what is the diffrenet bettwen HTTP and internet protocol
What is a list in c?