I\'m trying to bubble sort a character array in alphabetic order. My code is as follows:
#define CLASS_SIZE 10 #include void bubbleSortAWrit
Your s_letters is not properly initialized, yet you access it in:
s_letters
*b[j] = a[j-1]; *b[j-1] = temp;
It's a segfault.