An open API service indexing awesome lists of open source software.

https://github.com/subhash3/string_operations


https://github.com/subhash3/string_operations

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# 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..