案例:用转义字符输出可打印字符和不可打印字符。
/程序功能:用转义字符输出可打印字符和不可打印字符/
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");
 } 

相关文章:

  • 2022-02-28
  • 2021-12-17
  • 2021-12-18
  • 2021-12-05
  • 2022-01-22
  • 2021-11-28
  • 2022-02-12
猜你喜欢
  • 2021-10-24
  • 2021-12-29
  • 2022-01-08
  • 2022-02-01
  • 2022-03-01
  • 2022-01-31
  • 2022-01-31
相关资源
相似解决方案