How to add two numbers without using arithmetic operators?
Answer Posted / ranjith
#include<stdio.h>
main()
{
int a=5,b=4,c;
c=a||b;
printf("sum="+c);
}
| Is This Answer Correct ? | 2 Yes | 21 No |
Post New Answer View All Answers
What are different types of variables in c?
Array is an lvalue or not?
Explain #pragma statements.
Which is the memory area not included in C program? give the reason
What is a memory leak? How to avoid it?
How can you draw circles in C?
How do we print only part of a string in c?
Explain how do you determine the length of a string value that was stored in a variable?
What is calloc malloc realloc in c?
Do you know what are bitwise shift operators in c programming?
What are the different types of errors?
What is ponter?
Write the control statements in C language
Where are local variables stored in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?