How to use symbols of extended ASCII table in C?

余生长醉 提交于 2019-11-29 02:16:43
Pieter van der Meer

It's better to use unicode than extended ASCII, which is non-standard. A thread about printing unicode characters in C : printing-utf-8-strings-with-printf-wide-vs-multibyte-string-literals

But indeed you need to copy paste unicode characters..

A better way to start:

#include <stdio.h>

int main() {
    printf("\u2500\u2501\n");
}

See https://en.wikipedia.org/wiki/Box-drawing_character#Unicode for unicode characters for this extended ASCII style box art..

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!