TipsMake
Newest

Tags : learn c programming

The strcoll () function in C
Programming C 25 May 2019

The strcoll () function in C

the function int strcoll (const char * str1, const char * str2) compares strings str1 and str2. the result depends on setting lc_collate.

Read More
The function strpbrk () in C
Programming C 25 May 2019

The function strpbrk () in C

char * strpbrk (const char * str1, const char * str2) finds the first character in str1 string that connects any character specified in str2. (not including null ending

Read More
The strrchr () function in C
Programming C 25 May 2019

The strrchr () function in C

char * strrchr (const char * str, int c) looks for the last occurrence of the character c (an unsigned char) in the string pointed to by parameter str.

Read More
The strspn () function in C
Programming C 25 May 2019

The strspn () function in C

function size_t strspn (const char * str1, const char * str2) calculates the length of the first character segment of the str1 string containing the characters in str2

Read More
The strtok () function in C
Programming C 25 May 2019

The strtok () function in C

char * strtok function (char * str, const char * delim) divides the string str into a sequence of tokens separately separated by delim separators (eg comma, ...).

Read More
Function strxfrm () in C
Programming C 25 May 2019

Function strxfrm () in C

the function size_t strxfrm (char * dest, const char * src, size_t n) transforms the first n characters of the src string into the current locale and places them in dest string.

Read More
time.h in C
Programming C 25 May 2019

time.h in C

the file header named time.h in standard library c defines four variable types, two macros and various functions for date and time operations.

Read More
The strstr () function in C
Programming C 25 May 2019

The strstr () function in C

char * function strstr (const char * haystack, const char * needle) looks for the final occurrence of the whole needle string (not including the ending null character) that is

Read More