how to add numbers without using arithmetic operators.
Answer Posted / santhi perumal
#include<Stdio.h>
#include<conio.h>
void main()
{
int a=10,b=20;
while(b--) a++;
printf("Sum is :%d",a);
}
| Is This Answer Correct ? | 9 Yes | 11 No |
Post New Answer View All Answers
Write a program to print factorial of given number using recursion?
Why is c not oop?
What is operator precedence?
write a program to create a sparse matrix using dynamic memory allocation.
Why do we need functions in c?
Is c pass by value or reference?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
about c language
What math functions are available for integers? For floating point?
What is masking?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain what is the difference between the expression '++a' and 'a++'?
What are the 5 types of inheritance in c ++?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is identifier in c?