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
What is the scope of static variable in c?
What is c language & why it is used?
Explain what are the different file extensions involved when programming in c?
how do you programme Carrier Sense Multiple Access
What are the types of data types and explain?
how to count no of words,characters,lines in a paragraph.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What does main () mean in c?
What are global variables and how do you declare them?
Which is the best website to learn c programming?
What is a list in c?
Explain what is the best way to comment out a section of code that contains comments?
What are 'near' and 'far' pointers?
Why cant I open a file by its explicit path?
How pointer is different from array?