Q:

Write a C++ program to remove the character in a given position of a given string. The given position will be in the range 0..string length -1 inclusive

0

Write a C++ program to remove the character in a given position of a given string. The given position will be in the range 0..string length -1 inclusive

Sample Output:

Pthon
ython
Pythn

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>

using namespace std;

string test(string str, int n)
        {
            return str.erase(n, 1);
        }
        
int main() 
 {
  cout << test("Python", 1) << endl;  
  cout << test("Python", 0) << endl;  
  cout << test("Python", 4) << endl;  
  return 0;    
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now