HOW TO SWAP TWO NOS IN ONE STEP?

Answer Posted / z

Trick question: the phrase "one step" is undefined.
Example: how many steps are there in the following statement?
a = ++b;

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the rules for the identifier?

661


When should I declare a function?

614


On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area

651


How does normalization of huge pointer works?

618


What does c mean in standard form?

592






Write a code on reverse string and its complexity.

594


Explain how can I right-justify a string?

615


How can I get the current date or time of day in a c program?

645


Are the expressions * ptr ++ and ++ * ptr same?

659


What is the difference between %d and %i?

586


Write a Program to find whether the given number or string is palindrome.

606


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2209


How do you define CONSTANT in C?

644


Why doesn't C support function overloading?

1600


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

681