Language Ccpp Cref Examples Is_examp.c

/ ************************************************************************
 *
 * 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: 2025年9月9日 13:45,
40.74.122.252:LOG IN

©2025 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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://massmind.org/techref/language/ccpp/cref/EXAMPLES/is_examp.c"> language ccpp cref EXAMPLES is_examp</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /