https://github.com/subhash3/string_operations
https://github.com/subhash3/string_operations
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/subhash3/string_operations
- Owner: Subhash3
- Created: 2018-08-18T07:27:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-18T07:28:11.000Z (almost 8 years ago)
- Last Synced: 2025-04-25T20:02:55.814Z (about 1 year ago)
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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..