Write a program to interchange two variables without using
the third variable?
Answer Posted / saravanan j (srm universi
you can apply it on any language?!
x = x xor y
y = x xor y
x = x xor y
* 1 year ago
Source(s):
Self Expierince
| Is This Answer Correct ? | 18 Yes | 12 No |
Post New Answer View All Answers
What is difference between arrays and pointers?
What is difference between array and pointer in c?
Why & is used in scanf in c?
List the difference between a "copy constructor" and a "assignment operator"?
Can a pointer be null?
What are the types of assignment statements?
What is typedef struct in c?
Explain main function in c?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
Why doesnt this code work?
Write a program which returns the first non repetitive character in the string?
What is bash c?
Explain what is the best way to comment out a section of code that contains comments?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)