Which command counts only the total characters present in a file?
Explanation
Option A (wc -c) is used to count the number of characters in a file. Option B (wc -w) counts words, Option C (wc -l) counts lines, Option D (wc -r) is not a valid option, and Option E (wc -m) counts characters as well but is less commonly used.