I'm just doing some practice code but I can't figure out this stubborn Thread 1:
signal SIGABRT error.
int main(){
    char diet[] = "vegan";
    printf("Because of health concerns, my diet is now %s.\n", diet);
    strcpy(diet, "whatever");
    printf("Before the health concerns, my diet was %s.\n", diet);
    return 0;
}