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");}
None of these
void fun(int *p[3][4]){}
void fun(int p[][4]){}
void fun(int *p[4]){}
void fun(int *p[][4]){}
ANSWER
DOWNLOAD EXAMIANS APP
↑