write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / raja
void main()
{
int a=20,b=40;
for( ;b<=1;b--)
a++;
printf("%d",a);
}
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Is struct oop?
What is character constants?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How do you list a file’s date and time?
What is the best organizational structure?
What are the standard predefined macros?
What does s c mean in text?
What is the translation phases used in c language?
What are qualifiers and modifiers c?
What is the heap?
What is a double c?
What is sizeof c?
What is the difference between union and structure in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none