how to add numbers without using arithmetic operators.
Answer Posted / abdur rab
#include <stdio.h>
int main ( int argc, char* argv [ ] )
{
int value1 = 10;
int value2 = 5;
printf ( "\n The sum is :%d", value1 | value2 );
}
| Is This Answer Correct ? | 10 Yes | 12 No |
Post New Answer View All Answers
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the modulus operator?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Why malloc is faster than calloc?
Explain the advantages and disadvantages of macros.
What are the features of the c language?
Explain how can I make sure that my program is the only one accessing a file?
What does. int *x[](); means ?
Why isnt there a numbered, multi-level break statement to break out
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is an expression?
Lists the benefits of c programming language?
the question is that what you have been doing all these periods (one year gap)
Why is main function so important?
what value is returned to operating system after program execution?