Which line represents the intentional bounds in this loop?
string s("Hello CS 150");
while ( ())
{
if ( (0) == 'C') break;
s = (1);
}
cout << s << endl;
a) Line 1
b) Line 2
c) Line 4
d) Line 5