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
How can you determine the size of an allocated portion of memory?
All technical questions
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
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
What is include directive in c?
Why do we use return in c?
How can I open files mentioned on the command line, and parse option flags?
Process by which one bit pattern in to another by bit wise operation is?
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.?
What is c definition?
How can I discover how many arguments a function was actually called with?
Why does not c have an exponentiation operator?
Is c programming hard?
How is actual parameter different from the formal parameter?
Not all reserved words are written in lowercase. TRUE or FALSE?