C语言,字符常量

案例:用转义字符输出可打印字符和不可打印字符。
/程序功能:用转义字符输出可打印字符和不可打印字符/
C语言,字符常量

#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");
 }