/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

shafik.github.io
| | www.cppstories.com
4.8 parsecs away

Travel
| | Do you know the answers to those ten questions about Initialization in Modern C++? About I selected the following questions from 25 questions that you can find in my C++ Initialization Story book: Print version @Amazon C++ Initialization Story @Leanpub Moreover, in the book, you can find a few coding exercises to practice skills.
| | qsantos.fr
5.1 parsecs away

Travel
| | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers
| | cplusplus.github.io
5.3 parsecs away

Travel
| | C++ library issue. Status: C++23
| | www.bitsnbites.eu
22.9 parsecs away

Travel
| [AI summary] This article provides a quick introduction to developing software for the open-source MRISC32 32-bit RISC architecture using a GCC-based toolchain and a simulator, including examples from compiling C code and running DOOM.