How to add two numbers without using arithmetic operators?
Answer Posted / suhas
# include <stdio.h>
main()
{
int a=8,b=2;
a|=b;
printf("sum="+a);
}
Is This Answer Correct ? | 7 Yes | 43 No |
Post New Answer View All Answers
What is the difference between malloc calloc and realloc in c?
Are the expressions * ptr ++ and ++ * ptr same?
Explain how can I write functions that take a variable number of arguments?
Explain setjmp()?
What is printf () in c?
Write a program that accept anumber in words
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
When should we use pointers in a c program?
Why doesn't C support function overloading?
Explain can you assign a different address to an array tag?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Is sizeof a keyword in c?
What is a structure member in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What are runtime error?