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 diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?

1821


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

1105


Can stdout be forced to print somewhere other than the screen?

1023


How can I do graphics in c?

996


Difference between linking and loading?

1079


can anyone please tell about the nested interrupts?

2089


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

1039


What are the two forms of #include directive?

1124


Why is it important to memset a variable, immediately after allocating memory to it ?

2025


What is the meaning of 2d in c?

1078


Why can’t constant values be used to define an array’s initial size?

1339


Explain data types & how many data types supported by c?

1042


Explain what’s a signal? Explain what do I use signals for?

1086


can we change the default calling convention in c if yes than how.........?

2493


What is typedef struct in c?

1015