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.
you should not leave them to air dry
The answer to this is Optical mouse.
The reason the answer is optical mouse is because the optical mouse is a computer mouse which uses a light source, typically a light-emitting diode, and a light detector, such as an array of photodiodes, to detect movement relative to a surface.
Hope this helped :)
have a great day
Answer:
Contains a firewall.
Try's to keep all software up to date.
Able to use antivirus software and keep it current.
Allows you to use a password
Explanation:
Computer security is important because it keeps your information protected. It's also important for your computer's overall health
Please have a great day <3