Jump to content

New pages

New pages
Hide registered users | Hide bots | Show redirects

25 March 2025

24 March 2025

  • 21:2821:28, 24 March 2025 Constexpr (hist | edit) [170 bytes] Robertvokac (talk | contribs) (Created page with "The constexpr keyword in C++ is used to define constants that are evaluated at compile time, ensuring optimized and predictable behavior. It can gives performance boost.") Tag: Visual edit
  • 20:5920:59, 24 March 2025 Bool (hist | edit) [214 bytes] Robertvokac (talk | contribs) (Created page with "Bool is primitive data type holding 2 possible values: true or false. == Disadvantages == The data type bool allocates 8 bits of memory, but only one bit is needed, this is wasteful. == Alternatives == Bit fields") Tag: Visual edit
  • 19:5519:55, 24 March 2025 Bit field (hist | edit) [4,388 bytes] Robertvokac (talk | contribs) (Created page with "== C++ Bit Fields == Bit fields in C++ are a feature that allows struct members to be allocated with a specific number of bits, which helps in optimizing memory usage, particularly in low-level programming. === Definition and Syntax === A bit field is declared inside a `struct` or `union`, specifying the number of bits each member should occupy. The syntax is: <syntaxhighlight lang="cpp"> struct Example { unsigned int a : 3; // 3-bit field unsigned int b : 5;...")

22 March 2025

  • 17:2217:22, 22 March 2025 Key words (hist | edit) [10,238 bytes] Robertvokac (talk | contribs) (Created page with "= Understanding Keywords in C++ = Keywords are reserved words in C++ that have a predefined meaning in the language. These words cannot be used as identifiers (like variable names, function names, or class names) because they serve a special purpose within the languageā€™s syntax. C++ is a rich, complex language, and its keywords define the core structure of the language, such as data types, control structures, and object-oriented programming concepts. In this article,...") Tag: Visual edit: Switched
  • 17:1917:19, 22 March 2025 Future (hist | edit) [3,843 bytes] Robertvokac (talk | contribs) (Created page with " = The Future of C++: 10, 100, and 1000 Years Ahead = == The Next 10 Years: Evolution and Adaptation == In the short term, C++ will continue evolving with regular standard updates every three years. The upcoming '''C++26''' and '''C++29''' are expected to refine the language further, focusing on: * '''Better safety features:''' Improvements in memory safety, possibly integrating Rust-like borrow checking mechanisms. * '''Enhanced concurrency:''' More efficient multi-th...") Tag: Visual edit
  • 17:1717:17, 22 March 2025 C++ (hist | edit) [3,167 bytes] Robertvokac (talk | contribs) (Created page with " = Introduction to C++ = == What is C++? == C++ is a powerful, high-performance programming language that combines the efficiency of low-level programming with the flexibility of high-level abstractions. It is widely used for system programming, game development, embedded systems, and high-performance applications. == History and Development == C++ was created by '''Bjarne Stroustrup''' in 1979 as an extension of the C programming language. Initially called "C with Cla...") Tag: Visual edit
  • 17:1217:12, 22 March 2025 History (hist | edit) [4,199 bytes] Robertvokac (talk | contribs) (Created page with " = The History of C++ = == Introduction == C++ is one of the most influential and widely used programming languages in the world. It has shaped modern software development, enabling high-performance applications across multiple domains, from game development to system programming. This article traces the history of C++, from its inception to its current state. == The Origins: C and Object-Oriented Programming == In the early 1970s, Dennis Ritchie developed the...") Tag: Visual edit
  • 16:5216:52, 22 March 2025 Home (hist | edit) [531 bytes] Robertvokac (talk | contribs) (Created page with "Welcome to the cppforover.com - a website about the C++ programming language.")