✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виконує функція b(char *s){ int i; int need =1; while( need ){need = 0for(i=0; s[i+1]; i++ )if( s[i] > s[i+1] ){ swap( &s[i], &s[i+1] ); //обмін need = 1; } }}