Main public logs
Appearance
Combined display of all available logs of C++ Forever. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:51, 25 March 2025 Robertvokac talk contribs created page IDEs for C++ (Created page with "Visual Studio Community CLion Code::Blocks Eclipse Netbeans") Tag: Visual edit
- 21:48, 25 March 2025 Robertvokac talk contribs created page Compilers for C++ (Created page with "== Cfront == The first compiler was Cfront create by Bjarne Stroustrup in 1983. Cfront converted C++ code into C, but the resulting output was not easily readable or understandable by humans. * The generated C code was then converted by the C compiler to the machine code. Later, new C++ compilers were created. These compilers converted C++ directly to the machine code.") Tag: Visual edit
- 21:43, 25 March 2025 Robertvokac talk contribs moved page File name extensions of C source code file to File name extensions of C++ source code file without leaving a redirect
- 21:42, 25 March 2025 Robertvokac talk contribs created page File name extensions of C source code file (Created page with "{| class="wikitable" |+ !Implementation of C++ !File name extensions |- |UNIX |C, cc, cxx, c |- |GNU C++ |C, cc, cxx, cpp, c++ |- |Microsoft Visual C++ |cpp, cxx, cc |}") Tag: Visual edit
- 21:40, 25 March 2025 Robertvokac talk contribs moved page Steps to create program in C++ to Steps to create executable program in C++ without leaving a redirect
- 21:39, 25 March 2025 Robertvokac talk contribs created page Steps to create program in C++ (Created page with "# Create the C++ source code in any text editor. This step is done by the programmer (human). # Convert the C++ source code to the object code (machine language). This step is done by the compiler. # Link the object code with libraries. The result is an executable code. This step is done by the linker.") Tag: Visual edit
- 21:35, 25 March 2025 Robertvokac talk contribs created page Standardization of C++ (Created page with "1990 - The work on the standardization of C++ started in 1990 by ANSI/ISO. 1991 - 1997 - During the next years several working drafts of the standard were published. Before 1998 - Many people recognized as the C++ standard the latest versions of C++ published by Bell Labs. 1998 - The first standard of C++ is C98.") Tag: Visual edit
- 21:29, 25 March 2025 Robertvokac talk contribs created page Portability of computer program (Created page with "There are 2 main obstacles for any program to be portable: hardware and language variants '''Hardware:''' If program is dependent on a hardware, it cannot run on different hardware. '''Language variants:''' If computer program is written in a language variant not recognized by other platform, then such program is not portable. To solve the problem related to different language variants a standard should be created and this happened for C++ in 1998. '''Summary:''' Comp...") Tag: Visual edit
- 21:13, 25 March 2025 Robertvokac talk contribs created page Program (Created page with "'''Program consists of 2 parts:''' data and algorithms") Tag: Visual edit
- 21:28, 24 March 2025 Robertvokac talk contribs created page Constexpr (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:59, 24 March 2025 Robertvokac talk contribs created page Bool (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:55, 24 March 2025 Robertvokac talk contribs created page Bit field (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;...")
- 17:22, 22 March 2025 Robertvokac talk contribs created page Key words (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:19, 22 March 2025 Robertvokac talk contribs created page Future (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:17, 22 March 2025 Robertvokac talk contribs created page C++ (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:12, 22 March 2025 Robertvokac talk contribs created page History (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:52, 22 March 2025 Robertvokac talk contribs created page MediaWiki:Mainpage (Created page with "Home")
- 16:52, 22 March 2025 Robertvokac talk contribs created page Home (Created page with "Welcome to the cppforover.com - a website about the C++ programming language.")
- 15:54, 22 March 2025 MediaWiki default talk contribs created page Main Page