Answer Posted / rajkumar
(a=a-(b=(a=a+b)-b));
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
What are static variables in c?
can we change the default calling convention in c if yes than how.........?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
difference between object file and executable file
What is %g in c?
Explain how can you restore a redirected standard stream?
Explain which function in c can be used to append a string to another string?
What do you mean by a sequential access file?
What are pointers in C? Give an example where to illustrate their significance.
How many bytes are occupied by near, far and huge pointers (dos)?
How do you search data in a data file using random access method?
Differentiate fundamental data types and derived data types in C.
What are pointers? What are stacks and queues?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }