String operations in c

This repository contains all the string operations' source codes. All the programs are written using basic knowledge of c.

Description of files

  1. s_cpy.c : Copies the source string into the destination string.
  2. str_cpy.c : Copies the source string into the destination string.
  3. s_len.c : Returns the lenght of a given string.
  4. s_concat.c : Concatenates the second string after the first string and stores the result in a seperate string.
  5. s_concat2.c Concatenates the second string after first string and stores the resultant string in the first string.
  6. s_compare.c : Compares if two strings are identical or not.
  7. palindromes.c : Checks if the given string is a palindrome or not.
  8. compile.sh : A shell script to compile all the files simultaneously..