Answer Posted / ashik
#define SWAP(x,y) int t;t=x;x=y;y=t;
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
How can I prevent another program from modifying part of a file that I am modifying?
What is a string?
Why can’t we compare structures?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is the difference between exit() and _exit() function?
What does %d do in c?
How can I read and write comma-delimited text?
What is the purpose of main() function?
What is the advantage of c?
What does %c mean in c?
Give differences between - new and malloc() , delete and free() ?
What are the types of type specifiers?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Why does this code crash?
Explain what is the use of a semicolon (;) at the end of every program statement?