Thursday, 2 February 2012

Program Of Logical Operator In C++


#include<stdio.h>
#include<conio.h>
main()
{
clrscr();
printf("Enter Character=");
scanf("%c",&ch);

{
printf("\n Given Character is Vowel");
}
else
{
printf("\n Given Character is Consonants");
}
getch();
}

No comments:

Post a Comment