https://www.sololearn.com/coach/16?ref=app | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

https://www.sololearn.com/coach/16?ref=app

Please give the solution

24th Apr 2020, 5:04 AM
Naveen Kumar
2 Answers
+ 4
First try from your side. Code Coach Problems are for you to learn Programming.
24th Apr 2020, 6:29 AM
A͢J
A͢J - avatar
0
#include <iostream> using namespace std; int main() { int i=1; char sentence[80]; //input int k=0; while(sentence[k]!='\n') { cin>>sentence[k]; } //output int j=0; while(sentence[i]!='\n') { for( j=i; sentence[j]!='\0'; j++) cout<<sentence[j]; cout<<sentence[i-1]<<"ay "; i=j+2; } return 0; } I have tried this. It shows no output in result.
24th Apr 2020, 8:02 AM
Naveen Kumar