sir i wanted to know how we wap in c to add numbers without
using arithmetic operator in which digits are entered by
user?

Answer Posted / sheshivardhan reddy.rayala

using aadd()function we can add the arguements without
using arithmetic operator

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate call by value and call by reference?

541


What is extern storage class in c?

486


What is main function in c?

527


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

1956


How can I pad a string to a known length?

591






Is c# a good language?

585


How can I change their mode to binary?

668


Can a file other than a .h file be included with #include?

651


Difference between Function to pointer and pointer to function

603


What is modifier & how many types of modifiers available in c?

580


Explain how do you list a file’s date and time?

596


Do you know null pointer?

584


What is conio h in c?

602


How does #define work?

623


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1092