做K&R练习1-16,并且想要简单地打印char数组的内容.
#define MAXLINE 1000 /* max num of input chars */
char longest[MAXLINE]; /* char array to hold longest input */
...get input, store, calculate longest input line...
printf("Length : %d, Text was : %s\n", max, longest);
Run Code Online (Sandbox Code Playgroud)
我得到这个作为输出:

我应该怎么做才能打印文本,那些是unicode字符?
PS.我到处搜索......