Site icon Codeforcoding

strrev string function in C programming language

strrev string function in C programming language

In this tutorial, we will discuss strrev string function in C programming language

strrev()strrev() string function in C programming language is a string library function which is used to  reverses the given string.

 

Declaration

syntax  for strrev() is given below:

char  strrev ( char *string);

 

parameter or arguments

String – String is given to reverse the order.

 

Returns

The strrev()  returns the given string in reverse in C Language.

 

Required Header

the required header for strrev()  in C Programming language

#include<string.h>

 

strrev string function in C

Example

In the program, The string “Hello world” is reversed using strrev()  and output given below

Program 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char name[]="Hello world";
    printf("Reverse this string :%s\n",strrev(name));
    getch();
    return 0;
}

 

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

Reverse this string :dlrow olleh

 

 

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

 

strset string function in C programming language
strtok string function in C programming language
Exit mobile version