how to swap 2 numbers within a single statement?
Answers were Sorted based on User's Feedback
Answer / ratishchandra huidrom
if(c=a&&a=b&&b=c)printf("%d %d",a,b);
| Is This Answer Correct ? | 0 Yes | 3 No |
Is it possible to run a c program without using main?If yes HOW??
Program to display given 3 integers in ascending order
main() { int i; printf("%d",i^i); }
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
What are keywords in c with examples?
Write a C program to print 1 2 3 ... 100 without using loops?
What are the application of c?
Write a program to print “hello world” without using semicolon?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is sorting in c plus plus?
Are the variables argc and argv are local to main?