C - The C Answer (2nd Edition) - Exercise 1-2
Posted wzjhoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C - The C Answer (2nd Edition) - Exercise 1-2相关的知识,希望对你有一定的参考价值。
/* 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\?"); }
以上是关于C - The C Answer (2nd Edition) - Exercise 1-2的主要内容,如果未能解决你的问题,请参考以下文章
C - The C Answer (2nd Edition) - Exercise 1-6
C - The C Answer (2nd Edition) - Exercise 1-8
Title : Using Information Fragments to Answer the Questions Developers Ask