You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The solution to number 12, as stated in the solution is wc -c which counts bytes. The question asks for character count. Provided that you only have standard chars the -c option will work, however, if there are any special characters in your file, such as digraphs, -m is the better option for the solution.
The text was updated successfully, but these errors were encountered:
The solution to number 12, as stated in the solution is
wc -c
which counts bytes. The question asks for character count. Provided that you only have standard chars the -c option will work, however, if there are any special characters in your file, such as digraphs, -m is the better option for the solution.The text was updated successfully, but these errors were encountered: