C++------Free Form?
摘要:C++的语法的自由形式常被一些资深编程者用作代码复杂化的手段,即有意地将代码进行复杂化来使得程序不易读,借此来保护程序不易于被复制,不利于被解析。
阅读全文
Programming Paradigm
摘要:A Programming Paradigm is a model of programming based on the distinct concepts that shapes the way programmers design, organize and write programs. A
阅读全文
ASM------A language concerns about processor architectures
摘要:Assembly language is processor specific. This means that a program written in assembly language will not work on computers with different processor ar
阅读全文
C++------你知道嘛?
摘要:Comments starting with two slashes(" // ") were originally part of BCPL(Basic Combined Programming Language), and were reintroduced in C++.
阅读全文
(英语能力优秀者优先阅读)C——内存管理——摘自wiki
摘要:array limitations: the size of the array must be known beforehand the size of the array cannot be changed in the duration of your program So there com
阅读全文