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");}

Error
None of these.
Equal
Unequal

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
All of these
Takes care of macros
Takes care of conditional compilation
Acts before compilation

ANSWER DOWNLOAD EXAMIANS APP