Upgrade to Modern Cplusplus
May 30, 2024[Modern C++]
It seems a total different language sinc c++11, it provides more features such as auto, constexpr, lembda, thread, mutex, move semantics and so on. And more in c++14/17/20. It is time upgrade your c++ knowledge and leverage the power of the modern c++.
Contents
Programming
- Modern C++
- Python
- Linux
- Web Development
Hardware
- CPU
- GPU
- Embedded
Learning Languages
- English
- Chinese
Demo Codes
C++
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
cout << "Hello world!" << endl;
return 0;
}
Python
from date import Date
print(Date.now())