0
What would you write to make a code that detects a certain letter(s) in a string in C++?
1 Odpowiedź
0
To detect a certain letter or a set of letters in a string in C++, you can use various approaches. One common method is to iterate over each character in the string and compare it with the desired letter(s).