#include int main() { char s1[]="Dennis"; char s2[]="Dennis"; if(s1 == s2) printf(" The man behind C"); else printf(" Experience the legacy of C"); }
The man behind C
Experience the legacy of C
Error : == operator cannot be applied to reference data types
boolean cannot be converted to int