for (int b = 0; b < oString.size(); b++){
if (oString[b] != ''){
newKey += oString[b];
}
}
What is the purpose of the given array and code?
a) oString[b] != ''
b) newKey += oString[b]
c) for ( b= 0; b < oString.size(); b++)
d) if