...

/

Quiz on String Functions

Quiz on String Functions

Check your understanding of string functions by completing this quiz.

We'll cover the following...
Technical Quiz
1.

Consider the following code snippet:

char s1[ ] = "Good Morning" ;
char s2[ ] = "Good Evening" ;
int i ;
i = strcmp ( s1, s2 ) ;

Is it correct to say that s1 is the target string and s2 is the source string?

A.

Yes

B.

No


1 / 5