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

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\n Enter The Number:");
scanf("%d",&a);
printf("\n Enter the Number:");
scanf("%d",&b);
c=a+b;
printf("\n The Result Is");
printf("\n ~~~ ~~~~~~ ~~");
printf("%d",c);
getch();
}

Is This Answer Correct ?    20 Yes 74 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you determine the size of an allocated portion of memory?

1259


All technical questions

1940


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

1187


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1898


What is include directive in c?

1113


Why do we use return in c?

959


How can I open files mentioned on the command line, and parse option flags?

1032


Process by which one bit pattern in to another by bit wise operation is?

1120


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1038


What is c definition?

1210


How can I discover how many arguments a function was actually called with?

1035


Why does not c have an exponentiation operator?

1017


Is c programming hard?

984


How is actual parameter different from the formal parameter?

986


Not all reserved words are written in lowercase. TRUE or FALSE?

1198