运行 ❯
获得你
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <stdio.h> #include <stdlib.h> int main() { char c = '#'; if (isgraph(c)) { printf("%c has a graphical representation", c); } else { printf("%c does not have a graphical representation", c); } return 0; }
# 有图形表示