** CODE WRITTEN IN C**
The type modifier const has been misused in the function count_spaces. Keeping in mind the const rules on pointers (int * const vs. int const add and/or remove const specifiers so that this code compiles without any errors or warnings. Note that you may not make any changes other than adding or removing const, and you may not make any changes at all to main. unsigned int count_spaces (char * const
OR
OR