#include void main () { char ch; printf("enter an alphabet\n"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("%c given alphabet is vowel",ch); } if(ch!='a'||ch!='e'||ch!='i'||ch!='o'||ch!='u') { printf("%c given alphabet is not vowel",ch); }
#include void main() { char ch; printf("enter an alphabet"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("given character is vowel"); } else { printf("given character is not vowel"); } }
#include void main () { char ch; printf("enter the alphabet "); scanf("%c",&ch); if (ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("given character is vowel"); }
#include void main() { char ch; printf("enter an alphabet"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("Given character is vowel"); } else { printf("given character is not vowel"); } }
#include void main () { char ch; printf("enter an alphabet\n"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("%c given alphabet is vowel",ch); } else { printf("%c given alphabet is not vowel",ch); } }
#include void main() { float a,b,c,d,e,p; printf("enter marks obtained out of 100 in five subjects"); scanf("%f %f %f %f %f",&a, &b, &c, &d, &e); p=(a+b+c+d+e)/500*100; if(p<40) { printf("\tcandidate is fail\n"); } else if(p>=40&&p<=49.99) { printf("\tcandidate is pass class\n"); } else if(p>=50&&p<=59.99) { printf("\tcandidate is second class\n"); } else if(p>=60&&p<=66.65) { printf("\tcandidate is first class\n"); } else { printf("\tcandidate is first class with distinction\n"); } }
#include void main () { char ch; printf("enter an alphabet\n"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("%c given alphabet is vowel",ch); } if(ch!='a'||ch!='e'||ch!='i'||ch!='o'||ch!='u') { printf("%c given alphabet is not vowel",ch); }
#include void main() { char A; printf("Enter a character"); scanf("%c",&A); if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u') { printf("Entered character is vowel"); } else { printf("Entered character is consonant"); } }
#include void main() { char A; printf("Enter a character"); scanf("%c",&A); if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u') { printf("Entered character is vowel"); } else { printf("Entered character is consonant"); } }
#include void main() { char A; printf("Enter a character"); scanf("%c",&A); if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u') { printf("Entered character is vowel"); } else { printf("Entered character is consonant"); } }
#include void main() { char A; printf("Enter a character"); scanf("%c",&A); if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u') { printf("Entered character is vowel"); } else { printf("Entered character is consonant"); } }
#include void main() { char ch; printf("Enter the character"); scanf("%c",&ch); if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u') { printf("Enter character is vowel"); } else { printf("Enter character is consonent"); } }
#include void main() { char A; printf("Enter a character"); scanf("%c",&A); if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u') { printf("Entered character is vowel"); } else { printf("Entered character is consonant"); } }
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabets");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||'i'||ch=='o'||ch=='u')
{
printf("given character is ovwal");
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("%c given alphabet is vowel",ch);
}
if(ch!='a'||ch!='e'||ch!='i'||ch!='o'||ch!='u')
{
printf("%c given alphabet is not vowel",ch);
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given alphabet is vowel");
}
else
printf("given alphabet is NOT a vowel");
}
This comment has been removed by the author.
ReplyDelete#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabet");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given character is ovwal");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabet");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given character is vowel");
}
else
{
printf("given character is not vowel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter the alphabet ");
scanf("%c",&ch);
if (ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given character is vowel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabet");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("Given character is vowel");
}
else
{
printf("given character is not vowel");
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("%c given alphabet is vowel",ch);
}
else
{
printf("%c given alphabet is not vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabet");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf(" entered alphabet is vowel");
}
else
{
printf("given alphabet is not vowel");
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given alphabet is vowel");
}
else
printf("given alphabet is NOT a vowel");
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabets");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||'i'||ch=='o'||ch=='u')
{
printf("given character is ovwal");
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
float a,b,c,d,e,p;
printf("enter marks obtained out of 100 in five subjects");
scanf("%f %f %f %f %f",&a, &b, &c, &d, &e);
p=(a+b+c+d+e)/500*100;
if(p<40)
{
printf("\tcandidate is fail\n");
}
else if(p>=40&&p<=49.99)
{
printf("\tcandidate is pass class\n");
}
else if(p>=50&&p<=59.99)
{
printf("\tcandidate is second class\n");
}
else if(p>=60&&p<=66.65)
{
printf("\tcandidate is first class\n");
}
else
{
printf("\tcandidate is first class with distinction\n");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
This comment has been removed by the author.
ReplyDelete#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabets");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||'i'||ch=='o'||ch=='u')
{
printf("given character is ovwal");
}
}
#include
ReplyDeletevoid main()
{
float a,b,c,d,e,p;
printf(" marks of 5 subjets");
scanf("%f %f %f %f %f",&a,&b,&c,&d,&e);
p=(a+b+c+d+e)/500*100;
if(p<40.00)
{
printf("\n student is failed");
}
if(p>=40.00&&p<=49.99)
{
printf("\n pas class");
}
if(p>=50.00&&p<=59.99)
{
printf("\n second class");
}
if(p>=60.00&&p<=66.65)
{
printf("\n first class");
}
if(p>=66.66)
{
printf("\n first class with dist");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
Reply
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a char");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("entered charecter is vowel");
}
else
{
printf("entered charecter is consonent");
}
}
#include
ReplyDeletevoid main()
{
char b;
printf(" Enter a character ");
scanf("%c",b);
if(b=='a'|| b=='i'|| b=='o'|| b=='u'|| b=='e')
{
printf("Your Character is VOWEL\n");
}
else
{
printf("Your Characater is CONSONANT\n");
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("%c given alphabet is vowel",ch);
}
if(ch!='a'||ch!='e'||ch!='i'||ch!='o'||ch!='u')
{
printf("%c given alphabet is not vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char A;
printf("Enter a character");
scanf("%c",&A);
if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u')
{
printf("Entered character is vowel");
}
else
{
printf("Entered character is consonant");
}
}
This comment has been removed by the author.
ReplyDelete#include
ReplyDeletevoid main()
{
char A;
printf("Enter a character");
scanf("%c",&A);
if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u')
{
printf("Entered character is vowel");
}
else
{
printf("Entered character is consonant");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char A;
printf("Enter a character");
scanf("%c",&A);
if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u')
{
printf("Entered character is vowel");
}
else
{
printf("Entered character is consonant");
}
}
#include
ReplyDeletevoid main()
{
char A;
printf("Enter a character");
scanf("%c",&A);
if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u')
{
printf("Entered character is vowel");
}
else
{
printf("Entered character is consonant");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("Enter the character");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("Enter character is vowel");
}
else
{
printf("Enter character is consonent");
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter an alphabets");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||'i'||ch=='o'||ch=='u')
{
printf("given character is ovwal");
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char A;
printf("Enter a character");
scanf("%c",&A);
if(A=='a'||A=='e'||A=='i'||A=='o'||A=='u')
{
printf("Entered character is vowel");
}
else
{
printf("Entered character is consonant");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char c;
printf("enter a charecter value");
scanf("%c",&c);
if((c=='a')||(c=='e')||(c=='i')||(c=='o')||(c=='u'))
{
printf("the entered charachter %c is an vowel",c);
}
else
{
printf("the entered character %c is a consonant",c);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter a charater=");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("entered charater %c is vowel",ch);
}
else
{
printf("enterd charater %c is not a vowel",ch);
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main()
{
char ch;
printf("enter charector");
scanf("%c",&ch);
if(ch=='a'||ch=='i'||ch=='e'||ch=='o'||ch=='u')
{
printf("charector is wovel");
}
else
{
printf("charector is not wovel");
}
}
#include
ReplyDeletevoid main ()
{
char ch;
printf("enter an alphabet\n");
scanf("%c",&ch);
if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
{
printf("given alphabet is vowel");
}
else
printf("given alphabet is NOT a vowel");
}