您的位置:首页 > 编程语言 > C语言/C++

C语言 非打印字符

2015-07-04 21:29 1556 查看
#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);
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: