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
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Is it possible to initialize a variable at the time it was declared?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Where are the auto variables stored?
What are # preprocessor operator in c?
What is the difference between int main and void main?
What is the use of #include in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Explain the difference between call by value and call by reference in c language?
how to build a exercise findig min number of e heap with list imlemented?
Are pointers integer?
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
How many loops are there in c?
What is adt in c programming?
How can a program be made to print the name of a source file where an error occurs?