Answer:
void reverse(char dest[], char source[], int size)
{
for(int i=0;i<size;i++)//using for loop.
{
dest[i]=source[i];//assigning each element of source array to dest array.
}
int s=0,e=size-1;//initializing two elements s with 0 and e with size -1.
while(s<e){
char t=des[s]; //SWAPPING
dest[s]=dest[e]; //SWAPPING
dest[e]=t; //SWAPPING
s++;
e--;
}
}
Explanation:
I have used while loop to reverse the array.I have initialize two integer variables s and e with 0 and size-1.Looping until s becomes greater than e.
It will work as follows:
first s=0 and e=0.
dest[0] will be swapped with dest[size-1]
then s=1 and e=size-2.
then des[1] will be swapped with dest[size-2]
and it will keep on going till s is less than e.
A. Media designed for sharing information and promoting social
interactions
<span>Inter-enterprise PRIDE systems are referred to as distrubbuted systems because in such systems processing is divided across multiple computing devices.</span>
Answer:
Focus on facts.
Suggest improvements even in positive reviews.
Respond to the business if it offers to address your concern.
Explanation:
In order to establish credibility when posting complaints or reviews, focus must be on fact and must be well supported.
Readers will have more trust in a review that is balanced, therefore one must try to request suggestion for improvement even if the post is positive. Update can be done on original post to effect changes or bring in ideas gotten through communication with the business.
Since the website is permanent, one will be able to edit a post, but not to remove it. Also posts from unknown sources can be tracked, so transparency is needed