logo

Crowdly

In less than 10 words, state what the following function does: void strmanip(cha...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

In less than 10 words, state what the following function does:

void strmanip(char a[]) /* receives a string as its argument */

  char *b, temp;

  b = a + strlen(a) - 1;        

  for (  ; a < b ; a++, b--)            

  {                     

          temp = *a;

          *a = *b;

          *b = temp;

  }     

  return;

}

More questions like this

Want instant access to all verified answers on dle.plaksha.edu.in?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!