Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.