Skip to content

Latest commit

 

History

History

makeuppercase

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-01-10T04:54:31.561Z

  • Completed languages: ruby

  • Tags: Fundamentals, Strings

  • Rank: 8 kyu

Description

Write a function which converts the input string to uppercase.

For BF all inputs end with \0, all inputs are lowercases and there is no space between.
RISC-V: The function signature is

```c
void to_upper_case(const char *str, char *out);
```

`str` is the input string. Write your result to `out`. You may assume it is large enough to hold the result. You do not need to return anything.