Yes it is D like the other person said
The World Wide Web Consortium, which <span>is an international community where organizations, employees</span><span> and the general public work together to develop Web standards.</span>
I am assuming this is a true or false question? If so, the answer is true.
Answer:
Following code are:
int *temp; //declaration of variable
// perform swapping
temp = xp;
xp = yp;
yp = temp;
Explanation:
we declare an integer data type pointer variable "*temp" then perform swapping between them.
The variables "xp" and "yp" are already declared and these variables are performing swapping among three.
What is it about ? And what you need help on