Răspuns :
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char text[255], voc[]="aeiou", *p;
int cuvinte=0, cuvinte_cu_vocale=0;
cout<<"TEXT:"; cin.get(text,255);
p=strtok(text," ");
while(p!=NULL)
{
cuvinte++;
if(strchr(voc,p[0]))
cuvinte_cu_vocale++;
p=strtok(NULL," ");
}
cout<<cuvinte<<' '<<cuvinte_cu_vocale;
return 0;
}
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char s[256],*p;
int nr=0,nrv=0;
cin.getline(s,256);
p=strtok(s," ");
while(p)
{ nr++;
if(strchr("aeiouAEIOU",p[0])!=0) nrv++;
p=strtok(NULL," ");
}
cout<<nr<<" "<<nrv;
return 0;
}