Which of the following finds if the string a contains "abc"?
printf("%sabc\\n", A);
strcmp(A, "abc");
strstr(A, "abc");
strchr(A, "abc");