https://github.com/g3th/upper_case
Turning a lower-case string to upper-case in C.
https://github.com/g3th/upper_case
c malloc pointers strings upper-case
Last synced: 11 months ago
JSON representation
Turning a lower-case string to upper-case in C.
- Host: GitHub
- URL: https://github.com/g3th/upper_case
- Owner: g3th
- Created: 2024-07-25T03:25:32.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T18:22:40.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T10:27:08.661Z (over 1 year ago)
- Topics: c, malloc, pointers, strings, upper-case
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Upper Case Function in C
## Turning a lower case string to upper case in C
Learning the basics of working and manipulating strings in C, including memory allocation,
declaring functions in headers, and using pointers to pass information more quickly.
This program will simply turn a lower case string into upper case.
Included are tests to check if the ```toUpperCase``` function is working correctly.