Rust Programming Language


Rust is a modern systems programming language known for its focus on memory safety and performance.
14 Mar 2025
To make a variables in rust we need to use **let** keyword, by default the variable is immutable so you can't change its value.
14 Mar 2025
Any variable declared inside a function will be scoped only to its function, more generic rule.
14 Mar 2025
How we can use stack and heap memory in rust
14 Mar 2025
Rust arithmetics, bitwise, logical operators
14 Mar 2025
Rust flow Control like, if statement, while, loop, for, match.
14 Mar 2025
Rust supports multiple types of data types here you are going to cover struct, enums, Option, Arrays, and Vectors.
14 Mar 2025
Rust supports multiple types of data types here you are going to cover slice, strings, Tuples, pattern matching, and Generics.
14 Mar 2025
When you need several operations to execute one after another we put these operations into a functions.
14 Mar 2025