write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / nandu
#include<stdio.h>
#include<conio.h.
void main()
{
int a=10,b=20,c;
c=a-(-b);
printf("%d\n",c);
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
please explain every phase in the "SDLC" in the dotnet.
How will you delete a node in DLL?
What language is lisp written in?
What is the scope of global variable in c?
What is the 'named constructor idiom'?
Explain what is the concatenation operator?
what is recursion in C
What is the acronym for ansi?
What are enumerated types?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Are global variables static in c?
What is the basic structure of c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Is main is a keyword in c?
What language is c written?