Category Archives: function in C
- Home
- Archive by Category "function in C" (Page 2)
- On
- By
- 0 Comment
- Categories: function in C, pre-define maths function in C
Arithmetic function in C programming language
Arithmetic function in C programming language We will learn about Arithmetic function in C programming language In the C Programming language, the Arithmetic function is used for arithmetic calculations and manipulations. The arithmetic function is used for the arithmetic purpose in C Language C programming language contains a lot of header files for various purposes….
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strcmp string function in C programming Language
strcmp string function in C programming Language We will learn about strcmp string function in C programming Language Description strcmp() – In the C Programming Language, the strcmp function is a comparison operator. It compares two Strings and displays an integer value returns either negative, positive integer or zero Declaration Syntax for strstr() function is given…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strstr string function in C programming language
strstr string function in C programming language In this tutorial, We will learn about the strstr string function in C programming language and its functionality. Description strstr() – In the c programming language, the strstr function is used to locate the first occurrence of the substring pointed by the str2 within str1 string. Declaration Syntax for…
Read More- On
- By
- 0 Comment
- Categories: function in C, Library function in C, Pre-define String function in C
strrchr string function in C programming Language
strrchr string function in C programming Language In this tutorial, We will learn about strrchr string function in C programming Language Description strrchr() – In the C programming language, the strrchr functions find the last occurrence of the character within the String as denoted by character. Declaration Syntax for strrchr() function is given below char *strrchr(…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strncmp string function in C programming language
strncmp string function in C programming language In this tutorial, We will learn about strncmp string function in C programming language Description strncmp() – In the c programming language, the strncmp() function returns a negative , Zero and positive integer depending on whether the first n character of the object pointed by str1 is less than,…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strchr string function in C programming language
strchr string function in C programming language In this tutorial, We will learn about strchr string function in C programming language strchr() – In C programming language strchr() string function, pointer displays the given character from its first occurrence. Declaration Syntax Syntax for strchr() function is given below char strchr( const char *str,int ch); Parameter or…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strdup string function in C programming language
strdup string function in C programming language In this tutorial, we will learn about strdup string function in C programming language Description strdub() – In C programming language, strdup string function is a predefined string function which is used to duplicate given string. Declaration Syntax for strdub() function is given below: char strdup( const…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strlwr string function in C programming language
strlwr string function in C programming language In this tutorial, we will learn about strlwr string function in C programming language Description strlwr() – In the C programming language, this is used to Convert the string from any case to lower case Declaration Syntax for strlwr() function is given below char strlwr ( char *string);…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strupr string function in C programming language
strupr string function in C programming language In this tutorial, we will learn about strupr string function in C programming language and its functionality. Description In C programming language strupr() is a string function which is used to convert a given string from any case into uppercase. strupr() – this function is used to convert…
Read More- On
- By
- 0 Comment
- Categories: function in C, Library function in C, Pre-define String function in C
strtok string function in C programming language
strtok string function in C programming language In this tutorial, we will discuss strtok string function in C programming language strtok() -In C programming language, strtok() used to breaks the token into a series of the string using the delimiter. Declaration Syntax The syntax of the strtok() function in the c language is : char…
Read More