Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T18:22:40.000Z (5 months ago)
- Last Synced: 2024-07-26T04:52:53.438Z (5 months ago)
- Topics: c, malloc, pointers, strings, upper-case
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- 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 CLearning 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.