The strrchr() function searches the last occurrence of the specified character in the given string. This function works quite opposite to the function strchr() which… [Read More]
C strncpy() Function – C tutorial
The strncpy() function is similar to the strcpy() function, except that it copies only the specified number of characters from source string to destination string…. [Read More]
C strcpy() Function – C tutorial
The strcpy() function copies one string to another string. C strcpy() function declaration char *strcpy(char *str1, const char *str2) str1 – This is the destination… [Read More]
C strcoll() Function – C tutorial
The strcoll() function is similar to strcmp() function, it compares two strings and returns an integer number based on the result of comparison. C strcoll()… [Read More]
C strncmp() Function with example
In the last tutorial we discussed strcmp() function which is used for comparing two strings. In this guide, we will discuss strncmp() function which is… [Read More]
C strcmp() Function with example
The strcmp() function compares two strings and returns an integer value based on the result. C strcmp() function declaration int strcmp(const char *str1, const char… [Read More]
C strchr() Function with example
The function strchr() searches the occurrence of a specified character in the given string and returns the pointer to it. C strchr() Function char *strchr(const… [Read More]
C strncat() Function with example
In the last tutorial we discussed strcat() function, which is used for concatenation of one string to another string. In this guide, we will see… [Read More]
C strcat() Function with example
The strcat() function is used for string concatenation. It concatenates the specified string at the end of the another specified string. In this tutorial, we… [Read More]
Java DateTimeFormatter
The DateTimeFormatter class in Java is used for parsing dates in different formats. You can use this class to format date in a specified format… [Read More]
- « Previous Page
- 1
- …
- 72
- 73
- 74
- 75
- 76
- …
- 150
- Next Page »