首页 > 编程语言 > 详细

C语言 非打印字符

时间:2015-07-04 22:15:47      阅读:324      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>

int main(void)
{
	char ch;
	ch = 7;
	int count = 20;
	/*printf("%c",ch);
	printf("\007");		
	printf("\a");
	printf("\7");
	printf("\x7");
	printf("%c",'\7');*/
	printf("Hello\073\n");
	printf("%c\n",10);
	printf("Hello\070\n");
	printf("%c\n",7);
	printf("Hello\071\n");
	printf("%c\n",8);
	printf("Hello\072\n");
	printf("%c\n",9);
}

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

C语言 非打印字符

原文:http://blog.csdn.net/ibigprogramer/article/details/46757781

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!