✅ 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 =0; while( need ){need = 0for(i=0; s[i+1]; i++ )if( s[i] >s[i+1] ){ swap( &s[i], &s[i+1] ); //обмін need = 1; } }}