This repository contains all the string operations' source codes. All the programs are written using basic knowledge of c.
Description of files
- s_cpy.c : Copies the source string into the destination string.
- str_cpy.c : Copies the source string into the destination string.
- s_len.c : Returns the lenght of a given string.
- s_concat.c : Concatenates the second string after the first string and stores the result in a seperate string.
- s_concat2.c Concatenates the second string after first string and stores the resultant string in the first string.
- s_compare.c : Compares if two strings are identical or not.
- palindromes.c : Checks if the given string is a palindrome or not.
- compile.sh : A shell script to compile all the files simultaneously..