Help me in solving STR5V2 problem

My issue

My code

#include <bits/stdc++.h>
using namespace std;

int main() {

  string word = "Programming";



  return 0;
}

Learning course: Learn C++
Problem Link: CodeChef: Practical coding for everyone

use cout<<word[2]<<endl<<word[1];

1 Like

thanks. cout<<word[2]<<endl<,word[4]

1 Like