Site icon Codeforcoding

strset string function in C programming language

 strset() string function in C programming language

In this tutorial, we will discuss strset() string function in C programming language

Strset() – this string function in C programming language replaces the all the characters in a string to given characters.

Declaration

In the c programming language, the syntax  for strset()   is given below

char  strset ( char *string, int x);

 

Parameter or argument

String – To replace the string using given character

Returns

This function sets all the characters in a string to the given character

 

Required Header

the required header for strset()  function in C Programming language

#include<string.h>

strset string function in C

Example

In the program, all the character of the original string sets to ‘#’  and ‘&’  symbols using strset() functions and the output displays as follows

Program 1

//Example for strset string function in C language
#include <stdio.h>
#include <stdlib.h>

int main()
{
    char str[30]="Hello this is strset function";
    printf("Original string is :%s\n",str);
    printf("Test string 1:%s\n",strset(str,'#'));
    printf("Test string 2:%s\n",strset(str,'&'));
    getch();
    return 0;
}

 

When above program me  is compiled it will produce the following result

Original string is :Hello this is strset function
Test string 1 : ##############################
Test string 2 : &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

 

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 function in C Language

Arithmetic function  in C

Function in C language

String handling in C programming language

User defined function in C language

Python function 

recursive function in Python

 

 

strcat String function in C programming language
strrev string function in C programming language
Exit mobile version