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 the scope of static variable in c?

943


What is c language & why it is used?

1029


Explain what are the different file extensions involved when programming in c?

1051


how do you programme Carrier Sense Multiple Access

1925


What are the types of data types and explain?

1034


how to count no of words,characters,lines in a paragraph.

4376


any "C" function by default returns an a) int value b) float value c) char value d) a & b

1041


What does main () mean in c?

1055


What are global variables and how do you declare them?

1015


Which is the best website to learn c programming?

1029


What is a list in c?

982


Explain what is the best way to comment out a section of code that contains comments?

1093


What are 'near' and 'far' pointers?

982


Why cant I open a file by its explicit path?

988


How pointer is different from array?

1016