*c
means, that a char will be read but won’t be assigned, for example for the input “30a” it will assign 30 to word_count
, but ‘a’ will be ignored.
*c
means, that a char will be read but won’t be assigned, for example for the input “30a” it will assign 30 to word_count
, but ‘a’ will be ignored.