Answer Posted / devi
i can swap da 2 variables in singe instr
main()
{
int a,b;
a=(a=(a+b),b=(a-b),a-b);
-------
-------
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how can f be used for both float and double arguments in printf? Are not they different types?
Write a code of a general series where the next element is the sum of last k terms.
What is the purpose of macro in C language?
What language is lisp written in?
code for replace tabs with equivalent number of blanks
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
How are strings stored in c?
How can I write functions that take a variable number of arguments?
What are multibyte characters?
Explain what are reserved words?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Explain union. What are its advantages?
What is array in C
What is wrong with this statement? Myname = 'robin';