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 |
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is the value of c?
what is the hexidecimal number of 4100?
related proverb of "dont count your chicken before it hatches"
Do variables need to be initialized?
how c source file in converted to exe file
formula to convert 2500mmh2o into m3/hr
What is double pointer in c?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
What are the basic data types associated with c?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.