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 / vijayram600

#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=20;
clrscr();
while(b--) a++;
printf("Sum is :%d",a);
getch();
}

Is This Answer Correct ?    21 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of the preprocessor directive error?

1315


How can I write functions that take a variable number of arguments?

1189


What are variables and it what way is it different from constants?

1285


How can I change their mode to binary?

1185


Why array is used in c?

1062


Are comments included during the compilation stage and placed in the EXE file as well?

1127


How to draw the flowchart for structure programs?

9392


What are identifiers and keywords in c?

1200


What is this pointer in c plus plus?

1141


What is the best style for code layout in c?

1146


How do you construct an increment statement or decrement statement in C?

1275


What are different storage class specifiers in c?

1138


What is a string?

1171


What is the use of gets and puts?

1093


What does it mean when a pointer is used in an if statement?

1156