Answer Posted / ushagva1
a=a+b-(b=a);
| Is This Answer Correct ? | 21 Yes | 2 No |
Post New Answer View All Answers
What is volatile keyword in c?
What are keywords in c with examples?
Is null equal to 0 in sql?
Are pointers really faster than arrays?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
How can you call a function, given its name as a string?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why should I prototype a function?
Is there anything like an ifdef for typedefs?
Why is c called a mid-level programming language?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How can you increase the allowable number of simultaneously open files?
How we can insert comments in a c program?
Do character constants represent numerical values?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.