#include #include #include #include #include #include #include typedef wchar_t emoji; emoji get_emoji(string prompt); // You should not need to edit main() int main(void) { // Set locale according to environment variables setlocale(LC_ALL, ""); // Prompt user for code point emoji c = get_emoji("Code point: "); // Print character printf("%lc\n", c); } emoji get_emoji(string prompt) { // TODO }