How to add two numbers without using arithmetic operators?
Answer Posted / kavi
#include<stdio.h>
int a,b,c;
{
printf("enter the two values");
scanf("%d","%d",&a,&b);
c=a||b;
}
| Is This Answer Correct ? | 10 Yes | 80 No |
Post New Answer View All Answers
How can I open a file so that other programs can update it at the same time?
What is the size of a union variable?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain the use of function toupper() with and example code?
Explain the difference between call by value and call by reference in c language?
How can I make it pause before closing the program output window?
How do I get an accurate error status return from system on ms-dos?
What language is c written?
What is memcpy() function?
Where are the auto variables stored?
Explain the difference between strcpy() and memcpy() function?
What are shell structures used for?
What are the salient features of c languages?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What does main () mean in c?