write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / jithender palle(vaagdevi wgl)
main()
{
int a=10,b=30,c;
c=a|b;
printf("%d",c);
}
| Is This Answer Correct ? | 8 Yes | 21 No |
Post New Answer View All Answers
about c language
Describe the modifier in c?
What is the purpose of macro in C language?
why we wont use '&' sing in aceesing the string using scanf
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is the acronym for ansi?
Explain built-in function?
List some applications of c programming language?
What are the rules for the identifier?
What is a scope resolution operator in c?
What is pragma in c?
What is the difference between ++a and a++?
what are non standard function in c
Can 'this' pointer by used in the constructor?
Explain what is the advantage of a random access file?