what is the output?

#includestdio.h
int main()
{
char str1[] = {'S', 'O', 'O','K','S','H'};
char str2[] = {'S', 'O', 'O','K','S','H'};
if (strcmp(str1, str2))
{
printf("strings are not equal");
}
else
{
printf("strings are equal");
}
return 0;
}

Posted on by