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
What are the advantages of using linked list for tree construction?
What is the best style for code layout in c?
What is p in text message?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is array in C
What is array of structure in c programming?
How can I write a function analogous to scanf?
By using C language input a date into it and if it is right?
What’s the special use of UNIONS?
What is hashing in c?
Tell us bitwise shift operators?
Explain high-order bytes.
Explain how do you convert strings to numbers in c?
What is the difference between new and malloc functions?
Are bit fields portable?