Computer Science, asked by arihantjain2638, 9 months ago

Write CPP program to display number of vowel present in the given file

Answers

Answered by gauravarduino
0

Explanation:

The program output is shown below.

#include<iostream>

#include<string.h>

char str[50];

int v = 0, c = 0, n = 0, s = 0;

cout << "Enter a string : ";

gets(str);

for (int i = 0; str[i]!='\

Similar questions