Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a c program to add two integer numbers without using
arithmetic operator +

Answer Posted / sushma sarma

#include<iostream.h>
int main()
{
int a,b;
cout<<"Enter a and b";
cin>>a;
cin>>b;
while(a!=0)
{
++b;
a--;
}
cout<<b;
return 0;
}

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is scope and lifetime of a variable in c?

1118


Do you know the purpose of 'register' keyword?

1068


Explain how do you determine a file’s attributes?

1091


What are void pointers in c?

1062


what is the diffrenet bettwen HTTP and internet protocol

1883


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

1167


What is structure padding and packing in c?

1124


What is wrong in this statement?

1215


Are negative numbers true in c?

1108


Is c procedural or functional?

1096


A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

1153


Why we use stdio h in c?

1096


What is the difference between declaring a variable by constant keyword and #define ing that variable?

3439


Write a C program to count the number of email on text

1965


write a program in c language to print your bio-data on the screen by using functions.

6839