adspace
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 is ur strangth & weekness
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Do you know the difference between malloc() and calloc() function?
write a progrmm in c language take user interface generate table using for loop?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
How can I implement sets or arrays of bits?
What are compound statements?
write a c program to find the sum of five entered numbers using an array named number
Differentiate between null and void pointers.
What is pointer to pointer in c with example?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What are pointers? What are different types of pointers?
Explain the difference between null pointer and void pointer.
write a program to find out prime number using sieve case?
What is the difference between union and anonymous union?