strnset string function in C programming language
- Home
- function in C
- strnset string function in C programming language
- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strnset string function in C programming language
strnset string function in C programming language
In this tutorial, we will discuss strnset string function in C programming languag
Description
strnset() in C programming language is used to set portion of characters to given characters in a string.
strnset() – It sets the portion of characters in a string to given character.
Declaration
syntax for strnset() function is given below, in C Language
char *strset ( char *string, int x);
Returns
The strnset() returns a set portion of characters to given character in a string.
Required Header
the required header for strnset() in C Programming language
#include<string.h>
strnset string function in C
Example
The following example shows the usage of strnset() function
Program 1
#include <stdio.h> #include <string.h> int main() { char str[30]="Hello this is set string"; printf("Original string is : %s\n",str); printf("display after set string:%s\n",strnset(str,'#',6)); printf("display after set string :%s\n",strnset(str,'&',9)); getch(); return 0; }
When above program me is compiled it will produce the following result
Original string is : Hello this is set string display after set string : ######this is set string display after set string : &&&&&&&&&s is set string
There are other C programming language functions that are similar to the this function
strrev() function in C language
strrchr() function in C language
strdup() function in C language
strlwr() function in C language
strupr() function in C language
strrev() function in C language
strset() function in C language
strnset() function in C language
strtok() function in C language
strcat() function in C language
strncat() function in C language
strcpy() function in C language
strncpy() function in C language
strcmp() function in C language
strchr () function in C language
strdub () function in C language
Suggested for you
String handling in C programming language
User defined function in C language