C - The C Answer (2nd Edition) - Exercise 1-2

来源:互联网 发布:推荐算法有哪些 编辑:程序博客网 时间:2024/05/02 04:43
/*Experiment to find out what happens when printf's argument string contains \c, where c is some character not listed above.*/#include <stdio.h>main(){    printf("hello world\y");    printf("hello world\7");    printf("hello world\?");}
1 0
原创粉丝点击