Explore >> Select a destination


You are here

shrik3.com
| | abstractexpr.com
8.9 parsecs away

Travel
| | In C, the syntax and semantics of pointers that are const and pointers to const values can be a bit confusing. Constants Constants can be used like variables but it is only possible to read from them. Changing their initial value is not allowed. This is where things are still simple. So let's start with...
| | qsantos.fr
8.5 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 ?
| | andreasimonecosta.dev
9.8 parsecs away

Travel
| | Let's try to clarify, once and for all, the true essence of type parameters.
| | this-week-in-rust.org
33.7 parsecs away

Travel
|