Skip to content

A C library implementing custom versions of standard string functions: Substring, Upper Case, Lower Case, and Reverse. These are built manually without relying on the standard string.h library.

License

Notifications You must be signed in to change notification settings

ShotsMan2/Custom-String-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Custom String Library

This project implements essential string manipulation functions in C from scratch.

๐Ÿ› ๏ธ Functions Implemented

  1. SUBSTRING: Extracts a portion of a string based on a start index and length.
    • "yazilimcilar", 3, 4 $\to$ "ilim"
  2. UPPER: Converts all lowercase characters to uppercase.
    • "yazilim" $\to$ "YAZILIM"
  3. LOWER: Converts all uppercase characters to lowercase.
    • "YAZILIM" $\to$ "yazilim"
  4. REVERSE: Reverses the character order of the string in-place.
    • "ABC" $\to$ "CBA"

๐Ÿš€ Example Output

Based on Question 10:

1. SUBSTRING (3, 4): ilim
2. UPPER: YAZILIMCILAR
3. LOWER: yazilimcilar
4. REVERSE: 4321CBA

About

A C library implementing custom versions of standard string functions: Substring, Upper Case, Lower Case, and Reverse. These are built manually without relying on the standard string.h library.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages