×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Accept a String and Reverse It - String
Accept a String and Reverse Each Word of it - String - String - C Language
1647    Arnab De    26/05/2019

Read a string from user using gets () function. Now travel the string until a space (ASCII Code 32) found and copy the characters in a variable called 'word'. If a space found, then it considers a word and terminate it with a null character. Now reverse the word and store it into an output string. This procedure remains continue until the string is ended.

softetechnologies
#include <stdio.h>
#include <string.h>
#include <conio.h>
int main()
{
	char str[30],rev[30],word[30],i,w=0;
	printf("Enter A String: ");
	gets(str);//READ A STRING
	strcat(str," ");//ADD A SPACE AT END OF STR
	strcpy(word,"");//BLANK THE TEMPORARY WORD 
	strcpy(rev,"");//BLANK THE OUTPUT STRING [REV]
	for(i=0;str[i]!='\0';i++)
	{
		if(str[i]!=' ')
		{
			//CHARACTER ATTACH TO WORD
			word[w++]=str[i];
		}
		else
		{
			word[w]='\0';
			strrev(word);//reverse the word
			//attach the reversed word into output string [rev]
			if(strlen(rev)==0)
			{
				strcpy(rev,word);
			}
			else
			{
				strcat(rev," ");
				strcat(rev,word);
			}
			//RESET THE VARIABLE WORD AND W
			strcpy(word,"");
			w=0;
		}
	}
	//PRINT THE OUTPUT
	printf("Result : ");
	puts(rev);
	return 0;
}
softetechnologies
Accept a String and Reverse It - 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.
Rabindranath Tagore
The highest education is that which does not merely give us information but makes our life in harmon
Rabindranath Tagore
2016
58.5
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43984
01/01/2018     36610
25/06/2018     35914
28/06/2017     34654
02/08/2017     33153
01/08/2017     27616
06/07/2017     27336
15/05/2017     26986
14/07/2017     22627
21/04/2018     21239
softetechnologies