| 3 | using namespace std; |
| 4 | |
| 5 | int main() |
| 6 | { |
| 7 | string str = "Hello, SUSTech!"; |
| 8 | for(int i = 0; i <= str.length(); i++) //no bound check |
| 9 | cout << i << ": " << str[i] << endl; |
| 10 | |
| 11 | return 0; |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected