What
(if anything) prints when the following statement is
performed?Assume the following variable declarations:
char s1[
50 ] = "jack";
char s2[ 50 ] = "jill";
char
s3[ 50 ];
cout << strcat( strcat( strcpy( s3, s1 ), "
and " ), s2 ) << endl;
What
(if anything) prints when the following statement is
performed?Assume the following variable declarations:
char s1[
50 ] = "jack";
char s2[ 50 ] = "jill";
char
s3[ 50 ];
cout << strlen( s1 ) + strlen( s2 ) <<
endl;
What
(if anything) prints when the following statement is
performed?Assume the following variable declarations:
char s1[
50 ] = "jack";
char s2[ 50 ] = "jill";
char
s3[ 50 ];
cout << strlen( s3 ) << endl;
When used, the _________ stream manipulator causes positive numbers to display with a plus sign.