 
                            ...
| Code Block | 
|---|
| size_t str_size = calc_size(other_string); char *str_copy = malloc(str_size); | 
Non-compliant Code Example
...
3
Add an example using size_t as an index
...
 
                            ...
| Code Block | 
|---|
| size_t str_size = calc_size(other_string); char *str_copy = malloc(str_size); | 
...
Add an example using size_t as an index
...