The -c option to wc reports the byte/character count of a file, which is what's being asked for here. -w counts words and a bare wc (or an option like -l) counts lines instead, so they measure different units of the same file. There is no standard -r option for wc, and wc - 1 is not valid syntax for a character count.