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 are the different storage classes in c?
What is the importance of c in your views?
Can we declare variable anywhere in c?
What is the difference between union and anonymous union?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is data types?
Do variables need to be initialized?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
How can I read and write comma-delimited text?
What is a void pointer in c?