write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / vijayram600
#include<stdio.h>
#include<conio.h>
void main()
{
int a=10,b=20;
clrscr();
while(b--) a++;
printf("Sum is :%d",a);
getch();
}
| Is This Answer Correct ? | 21 Yes | 7 No |
Post New Answer View All Answers
There seem to be a few missing operators ..
what are bit fields in c?
How many bytes is a struct in c?
Write a C program to count the number of email on text
Where is volatile variable stored?
Write a program to print factorial of given number using recursion?
writ a program to compare using strcmp VIVA and viva with its output.
How is pointer initialized in c?
What is the ANSI C Standard?
Explain the difference between call by value and call by reference in c language?
Difference between goto, long jmp() and setjmp()?
Write a program to check prime number in c programming?
Hi can anyone tell what is a start up code?
Why header files are used?
What is the difference between int main and void main?