What will be the output of the following code?
#includestdio.h
int main ( )
{
char *str1="sookshmas, beyond knowing";
char *str2="AIML, sookshmas";
if (strcmp( str1 , str2))
printf("equal");
else
printf ("unequal");
}

Posted on by