C program which takes as command line argument a filename andthen count all words in the file. We will
define a word as a string of characters that are bounded by oneor more whitespace
characters (space, tab or newline) on both left and right sides.You can assume that a word can be maximum 50 characters long.
Answer