Run id: 134019
Main.cc: In function 'int main()':
Main.cc:5:10: error: conflicting declaration 'char a'
char a;
^
Main.cc:4:9: note: previous declaration as 'int a'
int a;
^
Main.cc:8:20: error: 'b' was not declared in this scope
if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
^
Main.cc:8:28: error: 'c' was not declared in this scope
if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
^
Main.cc:8:36: error: 'd' was not declared in this scope
if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
^
Main.cc:8:44: error: 'e' was not declared in this scope
if(a=='A'||b=='E'||c=='I'||d=='O'||e=='U') cout<<"Upper Vowel";
^
Main.cc:11:20: error: 'b' was not declared in this scope
if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel";
^
Main.cc:11:28: error: 'c' was not declared in this scope
if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel";
^
Main.cc:11:36: error: 'd' was not declared in this scope
if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel";
^
Main.cc:11:44: error: 'e' was not declared in this scope
if(a=='a'||b=='e'||c=='i'||d=='o'||e=='u') cout<<"Lower Vowel";
^