What will happen if you attempt to call this function with checkConcatThreshold("a");?
int checkConcatThreshold(string a, string b) {
return (a + b).length () > 120;
}
What will happen if you attempt to call this function with checkConcatThreshold("a");?
int checkConcatThreshold(string a, string b) {
return (a + b).length () > 120;
}