This project implements essential string manipulation functions in C from scratch.
-
SUBSTRING: Extracts a portion of a string based on a start index and length.
-
"yazilimcilar", 3, 4$\to$ "ilim"
-
-
UPPER: Converts all lowercase characters to uppercase.
-
"yazilim"$\to$ "YAZILIM"
-
-
LOWER: Converts all uppercase characters to lowercase.
-
"YAZILIM"$\to$ "yazilim"
-
-
REVERSE: Reverses the character order of the string in-place.
-
"ABC"$\to$ "CBA"
-
Based on Question 10:
1. SUBSTRING (3, 4): ilim
2. UPPER: YAZILIMCILAR
3. LOWER: yazilimcilar
4. REVERSE: 4321CBA