Wikipedia

Search results

Wednesday, November 13, 2024

Baisc Rust Language Features : Part-5

Rust is a new system programming language replacing C language  rapidly. Rust language is influenced by new programming languages like

  • C#
  • C++
  • Haskell
  • Ruby
  • Swift
Some of the basic features of Rust languages are

  • Type/Memory Safe
  • Does not support Dangling pointers and null pointers.
  • Safe Pointers
  • Does not allow function overloading
  • Doest not uses Garbage Collector.
  • High Speed performance like C/C++
  • Variables are immutable by default meaning once a value is assigned to a variable it can not be changed.

 

No comments:

Post a Comment

Creating Simple Selectable Menu in Turbo C++ [graphics mode]

 Here is simple code for creating a menu in graphics mode in turbo c++. you can select menus by pressing up and down arrow keys. #include ...