Write a C program that examines each character in
a two-dimensional array and determines how many
of the characters are vowels (a, e, i, o, u), how
many are consonants, how many are digits and how
many are other kinds of characters. The program
should also determine the number of character “n”
appeared in the text.
The program should read in three lines of text and
store it in a two-dimensional character array.
Assume that array can store up to 80 characters.
Display the results on the screen.
An example of input/output is shown below
Enter three lines of text :
CE1100 Computer Programming
Assignment #10
Question #1
No. of vowels : 14
No. of consonants : 25
No. of digits : 7
No. of other characters : 6
No. of occurrences for letter n : 4
printf("No. of vowels : %d\n",v);
printf("No. of consonants: %d\n",c);
printf("No. of digits: %d\n",d);
printf("No. of other characters: %d\n",o);
printf("No. of occurences for letter n : %d\n",p);