isalnum



defined in header file ctype.h

int isalnum( int c);

Checks if the given character is alphanumeric

The result is true if contains either alphabet ( lowercase or upper case) or a number, otherwise false.

Parameters

Parameter NameDescription
ccharacter to check, which must have value of unsigned char or EOF.

example

#include <stdio.h>
#include <ctype.h>
#include <string.h>

int main ( int argc, char* argv[])
{
	int i;
	
	char str[] = "a";
	
	if(isalnum(str[0]))
	{
		printf ("its alphanumeric character\n");
	}
	else
	{
		printf ("its NOT alphanumeric character\n");
	}
	
	return EXIT_SUCCESS;
}



strtok

Split string into tokens

posted on 2019-03-17 20:41:48 - C Programming Language Tutorials


zalloc

zalloc is a third party library

posted on 2018-12-12 20:46:30 - C Programming Language Tutorials


math

posted on 2017-12-29 22:52:47 - C Programming Language Tutorials


Prompt Examples

ChatGPT Prompt Examples

posted on 2023-06-21 22:37:19 - ChatGPT Tutorials


Use Cases

Chat GPT Key Use Cases

posted on 2023-06-21 21:03:17 - ChatGPT Tutorials


Prompt Frameworks

Prompt Frameworks

posted on 2023-06-21 19:33:06 - ChatGPT Tutorials