C program to compare the given strings
kw.c
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to compare two strings ——————————————————————————————————————————— Enter the 1st string HELLO Enter the 2nd string WORLD Strings are unequal ——————————————————————————————————————————— kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to compare two strings ——————————————————————————————————————————— Enter the 1st string WORLD Enter the 2nd string WORLD Strings are equal ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
C program to convert lowercase to an uppercase string
C program to convert uppercase to a lowercase string
C program to reverse a given string
Advertisement