hi al,pls help for the following code snippet
main()
{
typedef char abc[20];
abc a;
abc b;
strcpy(a,"HI");
printf("Enter string");
scanf("%s",b);

if(strcmp(a,b)= =0)
{ printf("\nSUCCE SS");
}
else
{
printf("\nFAILU RE");
}
}

is anything wrong in the strmp stmt.,when...