From 9bcbfe2856c1bb05a447d276da290aaba5fe86c1 Mon Sep 17 00:00:00 2001 From: Manasi Wader Date: Sun, 13 Sep 2020 23:00:27 +0530 Subject: [PATCH] reverse words in string --- String/reverse_words.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/String/reverse_words.cpp b/String/reverse_words.cpp index 51210a1..10e8242 100644 --- a/String/reverse_words.cpp +++ b/String/reverse_words.cpp @@ -1,4 +1,4 @@ -//You are given a string s. You need to reverse the string. +//Given a String S, reverse the string without reversing its individual words. Words are separated by dots. //solution: #include