/ ************************************************************************
*
* Purpose: Program to demonstrate the following functions:
* isalpha, isdigit, isspace.
* The same principles apply to isalnum, iscntrl, isgraph,
* islower, isprint, ispunct, isupper, isxdigit
*
* Author: M. J. Leslie
* Date: 09-Mar-94
*
************************************************************************/
#include <stdio.h> /* printf */
#include <ctype.h> /* isalpha isdigit isspace etc */
#define FALSE 0
#define TRUE 1
/* function declarations */
int char_type(char);
main()
{
char ch;
/* get a character from the keyboard */
printf(" Please enter a charcater => ");
ch = getc(stdin);
char_type(ch); /* Figure out the character type */
}
/****************************************************************
decide the character type.
*****************************************************************/
int char_type(char ch)
{
/* returns non zero if A-Z or a-z */
if ( isalpha(ch) != FALSE)
printf("%c is an Alpha character.\n",ch);
/* returns non zero if 0-9 */
if ( isdigit(ch) != FALSE)
printf("%c is a numeric character.\n",ch);
/* returns non zero if a space, CR, Tab, NL FF */
if ( isspace(ch) != FALSE)
printf("%c is white space\n", ch);
}
| file: /Techref/language/ccpp/CREF/EXAMPLES/is_examp.c, 1KB, , updated: 1997/4/21 09:52, local time: 2012/5/25 07:23,
38.107.179.233:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/language/ccpp/CREF/EXAMPLES/is_examp.c"> language ccpp CREF EXAMPLES is_examp</A> |
| Did you find what you needed? |
|
Calculator 7-seg LED chars, port values, resistor color codes and common values, ohms law, wavelength / frequency, RMS and Peak, max value for x bits, etc... |
.