C/C++ Program to count the number of articles in a string
Write a program to count the number of articles in a string in C/C++. Example, Input An apple a day keeps the doctor away Output Number of “a” = 1 Number of “an” = 1 Number of “the” = 1 There are 3 articles in the English language – “a”, “an” and “the”. The problem …
C/C++ Program to count the number of articles in a string Read More »