C++ Primer Plus第八章编程练习答案参考
这一章的题目相对来说较少,但是个人认为也比前面的稍难了,还有一道题我做的时候查过别人的答案,发现都是文不对题的,待会会标注出来。1.#include<iostream>using namespace std;int count=0;void show(const char *str, int n=0);int main(){ const char* str = "Good night~"; show(str); show(str,10); show