Learn c and cpp language. I provide some random exercises when I am learning the cpp.
- reference: https://en.cppreference.com/
- tutorial: https://www.learncpp.com/
- Structure and Interpretation of Computer Programs: https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book.html (should take a look at this book whatever language you are learning)
- Stanford CS 106L lectures: http://web.stanford.edu/class/cs106l/lectures.html
- firstly, we do the gcc test.cpp then ./a.out but we can add ./a.out > out.txt to save in a txt file and we can add ./a.out < input.txt to add an input file
- sometimes I prefer to use the linux system, so i ssh through the VS code. ssh [email protected] PS: the locked screen passwords
- C++ static function https://en.cppreference.com/w/cpp/language/static
- C++ 虚函数原理 https://www.cnblogs.com/malecrab/p/5572730.html
- C++ 和 C 编译原理 https://www.cnblogs.com/miloyip/archive/2010/09/17/behind_cplusplus.html
- external C