InterviewSolution
Saved Bookmarks
| 1. |
Could using Rust be a safer option compared to C and C++? |
|
Answer» The most vital advantage of USING Rust over C languages is its EMPHASIS on PRODUCING safe CODE. As manage memory or pointer arithmetic is necessary in C programs, Rust doesn’t REQUIRE any of it beginning to end. Rust allows programmers to write unsafe code, but defaulting to its safe code. |
|