Objective
Write a program that receives two strings and prints every unique character that appears in either one, without any duplicates. Output order is driven by the second string first, then any remaining characters from the first string.
Steps
$ ./char_merge "rebase" "stdin never lies" | cat -e
stdin evrlba$
$ ./char_merge "grep found nothing" "exit" | cat -e
exitgrp foundh$
$ ./char_merge | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that receives two strings and prints every unique character that appears in either one, without any duplicates. Output order is driven by the second string first, then any remaining characters from the first string.
Steps
$ ./char_merge "rebase" "stdin never lies" | cat -e
stdin evrlba$
$ ./char_merge "grep found nothing" "exit" | cat -e
exitgrp foundh$
$ ./char_merge | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code