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
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Is a pointer a kind of array?
What is the use of ?
how to write optimum code to divide a 50 digit number with a 25 digit number??
Write a program to print fibonacci series without using recursion?
what are # pragma staments?
What is an auto variable in c?
What is wrong with this statement? Myname = 'robin';
What is the difference between single charater constant and string constant?
What is pointers in c with example?
What is conio h in c?
What is meant by int main ()?
Is void a keyword in c?
What are identifiers and keywords in c?
Explain high-order and low-order bytes.