How to swap two values using a single variable ?
condition: Not to use Array and Pointer ?
Answer Posted / guest
use actual and formal function
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What are the keywords in c?
What are disadvantages of C language.
Why is this loop always executing once?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are comments and how do you insert it in a C program?
What is the general form of #line preprocessor?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the most efficient way to count the number of bits which are set in an integer?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is the advantage of an array over individual variables?
Compare interpreters and compilers.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is a scope resolution operator in c?
When should you use a type cast?
What are the standard predefined macros?