ANSIC允许声明常量,常量和变量不同,常量就是不可以改变的量,用关键字const来修饰 比如:const int a int const a 以上两种声明方式是一样的,我们不需要考虑const和int的先后顺序,按照你理解的方便的一中方式进行应用. 因为const和int的顺序先后并不影响结果,因此 int const * && const int *这两中情况就是一样的 所以我们只需要讨论两种情况 -----------------------------------------
参考自<c++ primer 5th zh>,本系列将会接着将<The C++ Programming Language 4th Ed><c++ primer plus 6th>加进来,暂时是抄书形式的这种,所以会引起大家的不适吧.初衷主要是为了自己能将厚厚的一本书压缩到几个博客中,这样看书回忆更容易了,因为相比来说,一个版面的,就算再大也比折成一张一张的书籍,更能够宏观的把握,而且对于我来说,忽略了很多不必要的文字,(==!当然现在还是很多,所以其实通过对自己博客的书
A positive integer is called a palindrome if its representation in the decimal system is the same when read from left to right and from right to left. For a given positive integer K of not more than 1000000 digits, write the value of the smallest pal