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


Please Help Members By Posting Answers For Below Questions

what is ur strangth & weekness

2585


In C programming, how do you insert quote characters (‘ and “) into the output screen?

1612


Do you know the difference between malloc() and calloc() function?

1131


write a progrmm in c language take user interface generate table using for loop?

2122


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

2824


How can I implement sets or arrays of bits?

1114


What are compound statements?

1287


write a c program to find the sum of five entered numbers using an array named number

2240


Differentiate between null and void pointers.

1253


What is pointer to pointer in c with example?

1195


The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?

1356


What are pointers? What are different types of pointers?

1261


Explain the difference between null pointer and void pointer.

1157


write a program to find out prime number using sieve case?

2171


What is the difference between union and anonymous union?

1395