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

What is scope rule of function in c?

1149


illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

2129


Write the syntax and purpose of a switch statement in C.

1150


How can a number be converted to a string?

1393


What is the difference between the local variable and global variable in c?

1015


how to capitalise first letter of each word in a given string?

1983


What's the right way to use errno?

1201


Why & is used in c?

1247


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

1209


Why is structure padding done in c?

1190


What is a structure member in c?

1051


what are the different storage classes in c?

1232


Write a program with dynamically allocation of variable.

1181


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1216


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

1264