#include <stdio.h>

int main(void) {
    char test_string[] = "test_string";
    *test_string = 'a';
    return 0;
}
