您的位置: 首页 > 文章 > C语言,字符常量 C语言,字符常量 分类: 文章 • 2025-03-26 17:20:21 案例:用转义字符输出可打印字符和不可打印字符。 /程序功能:用转义字符输出可打印字符和不可打印字符/ #include<stdio.h> #include<stdlib.h>//调用system函数 #include<windows.h>//调用Sleep函数。S是大写的。 main() { system("color f4"); printf("\x4F\x4B\x21\n"); printf("\x15 \xAB\n"); }