C Programming
What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");}

Equal
Error
Unequal
None of these.

ANSWER DOWNLOAD EXAMIANS APP