uppercase.c
Version:
uppercase a string in-place in c
43 lines (28 loc) • 572 B
Markdown
int main (int argc, char **argv) {
for (int i = 1; i < argc; i++) {
printf("%s ", uppercase(argv[i]));
}
printf("\n");
return 0;
}
```
``` c
```
#
Uppercase the string `str` in-place, returning `str`.
With [npm](https://npmjs.org) do:
```
npm install uppercase.c
```
This is a [dotc](https://github.com/substack/dotc) module.
MIT
uppercase a string in-place in c
``` c