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

Posted on by