January 2011
5 posts
Jan 7th
Jan 7th
Jan 7th
Jan 7th
ispunct
#include<iostream.h> #include<conio.h> #include<ctype.h> char letter; int main() {clrscr();  cout«”Enter a lette:”;  cin»letter;  if(isalnum(letter))   cout«letter«” is an alphabhet or a number. \n”;  else   cout«letter«” is not an alphabet nor a number. \n”;  if(isalpha(letter))    cout«letter«” is...
Jan 6th