write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / praveenkumar
main()
{
int a,b,c;
printf("enter a,b values:");
scanf("%d%d",&a,&b);
c=((a)-(-b));
printf("a+b="&c);
}
Is This Answer Correct ? | 66 Yes | 3 No |
Post New Answer View All Answers
Explain the properties of union.
What are the basic data types associated with c?
How can you find the day of the week given the date?
What is #pragma statements?
What does c value mean?
Is c is a high level language?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain the binary height balanced tree?
What type of function is main ()?
define string ?
What is character constants?
What is c language in simple words?
Which is best book for data structures in c?
How can I write functions that take a variable number of arguments?
Explain 'far' and 'near' pointers in c.