×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Find the frequency of character in a sentence - String
Reverse a string - String - String - C Language
2262    Arnab De    15/04/2019

Write a C program to reverse a string

calculate the length of the string. Copy the characters of the string into another string from the back or in reverse order. We can also use strrev() method to reverse the string. for that, we must include string.h header file.

softetechnologies
#include<string.h>

int main()
{
	char str[30],rev[30],j,i,l;
	printf("Enter A String: ");
	gets(str);
	l=strlen(str);
	for(i=0,j=l-1;j>=0;i++,j--)
	{
		rev[i]=str[j];
	}
	rev[i]='\0';
	printf("Reverse String Is ");
	puts(rev);
	return 0;
}
softetechnologies

Rewrite the same program using strrev() method

#include<string.h>

int main()
{
	char str[30],rev[30],j,i,l;
	printf("Enter A String: ");
	gets(str);
	strrev(str);
	printf("Reverse String Is ");
	puts(str);
	return 0;
}
softetechnologies
Find the frequency of character in a sentence - String
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
I never teach my pupils, I only provide the conditions in which they can learn.
Albert Einstein
1
80.82
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54128
25/06/2018     45121
01/01/2018     43673
28/06/2017     41209
02/08/2017     40224
01/08/2017     34268
06/07/2017     34071
15/05/2017     33309
11/09/2018     30326
14/07/2017     29835
softetechnologies