Checking equality of strings
Program:
int main(){
printf("1==1 : %d\n", 1==1);
printf("'a'=='a' : %d\n", 'a'=='a');
printf("hello==hello : %d\n", "hello"=="hello");
char s1[] = "hello";
char s2[] = "hello";
printf("hello==hello strings as char arrays : %d...
kaustubhk.hashnode.dev1 min read