What is the output of the code snippet given below? string s = "abcde"; int i = 1; while (i < 5) { cout << s. substr (i, 1); i++; }a. no outputb. abcdc. abcde d. bcde
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the output of the code snippet given below? string s = "abcde"; int i = 1; while (i < 5) { cout ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » What is the output of the code snippet given below? string s = "abcde"; int i = 1; while (i < 5) { cout << s. substr (i, 1); i++; }a. no outputb. abcdc. abcde d. bcde