User contributions for Robertvokac
Appearance
Results for Robertvokac talk block log uploads logs
A user with 55 edits. Account created on 22 March 2025.
25 March 2025
- 21:4021:40, 25 March 2025 diff hist +3 Steps to create executable program in C++ No edit summary current Tag: Visual edit
- 21:4021:40, 25 March 2025 diff hist 0 m Steps to create executable program in C++ Robertvokac moved page Steps to create program in C++ to Steps to create executable program in C++ without leaving a redirect
- 21:3921:39, 25 March 2025 diff hist +303 N Steps to create executable 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:3521:35, 25 March 2025 diff hist +318 N 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." current Tag: Visual edit
- 21:2921:29, 25 March 2025 diff hist +607 N 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..." current Tag: Visual edit
- 21:2421:24, 25 March 2025 diff hist +242 C++ No edit summary current Tag: Visual edit
- 21:2221:22, 25 March 2025 diff hist +284 History No edit summary current Tag: Visual edit
- 21:1821:18, 25 March 2025 diff hist +74 History No edit summary Tag: Visual edit
- 21:1321:13, 25 March 2025 diff hist +54 N Program Created page with "'''Program consists of 2 parts:''' data and algorithms" current Tag: Visual edit
- 21:1121:11, 25 March 2025 diff hist +42 C++ No edit summary Tag: Visual edit
- 21:1021:10, 25 March 2025 diff hist −124 History No edit summary Tag: Visual edit
- 20:5620:56, 25 March 2025 diff hist +8 C++ No edit summary Tag: Visual edit
- 20:4320:43, 25 March 2025 diff hist −446 C++ No edit summary Tag: Visual edit
- 20:3920:39, 25 March 2025 diff hist +333 C++ No edit summary Tag: Visual edit
- 20:3720:37, 25 March 2025 diff hist +84 Home No edit summary current Tag: Visual edit
- 20:3520:35, 25 March 2025 diff hist +83 Home No edit summary Tag: Visual edit
- 20:3520:35, 25 March 2025 diff hist +62 Home No edit summary Tag: Visual edit
- 20:2820:28, 25 March 2025 diff hist −16 Home No edit summary Tag: Visual edit: Switched
24 March 2025
- 21:2821:28, 24 March 2025 diff hist +170 N 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." current Tag: Visual edit
- 21:1121:11, 24 March 2025 diff hist 0 Bit field →less readable code current Tag: Visual edit
- 21:0021:00, 24 March 2025 diff hist +117 Bit field No edit summary Tag: Visual edit
- 20:5920:59, 24 March 2025 diff hist +214 N 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" current Tag: Visual edit
- 20:5420:54, 24 March 2025 diff hist +182 Bit field →Portability Issues across different platforms Tag: Visual edit
- 20:5020:50, 24 March 2025 diff hist +460 Bit field No edit summary Tag: Visual edit: Switched
- 20:4620:46, 24 March 2025 diff hist +441 Bit field No edit summary Tag: Visual edit
- 20:3120:31, 24 March 2025 diff hist −13 Bit field No edit summary
- 20:0220:02, 24 March 2025 diff hist +9 Bit field No edit summary Tag: Visual edit: Switched
- 19:5919:59, 24 March 2025 diff hist −159 Bit field No edit summary Tag: Visual edit: Switched
- 19:5719:57, 24 March 2025 diff hist −187 Bit field No edit summary Tag: Visual edit: Switched
- 19:5519:55, 24 March 2025 diff hist +3,538 N 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;..."
22 March 2025
- 17:3217:32, 22 March 2025 diff hist +3 Key words →Keywords Introduced in C++23 current Tag: Visual edit
- 17:3217:32, 22 March 2025 diff hist −2 Key words No edit summary Tag: Visual edit
- 17:3117:31, 22 March 2025 diff hist +796 Key words No edit summary
- 17:2917:29, 22 March 2025 diff hist +459 Key words No edit summary
- 17:2917:29, 22 March 2025 diff hist +381 Key words No edit summary Tag: Visual edit: Switched
- 17:2717:27, 22 March 2025 diff hist −273 Key words No edit summary
- 17:2717:27, 22 March 2025 diff hist +553 Key words No edit summary Tag: Visual edit: Switched
- 17:2517:25, 22 March 2025 diff hist +1 Key words No edit summary Tag: Visual edit: Switched
- 17:2517:25, 22 March 2025 diff hist +948 Key words No edit summary
- 17:2417:24, 22 March 2025 diff hist −1 Key words No edit summary Tag: Manual revert
- 17:2417:24, 22 March 2025 diff hist +1 Key words No edit summary Tag: Reverted
- 17:2217:22, 22 March 2025 diff hist +7,372 N 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:1917:19, 22 March 2025 diff hist +3,843 N 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..." current Tag: Visual edit
- 17:1717:17, 22 March 2025 diff hist +2,988 N 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:1617:16, 22 March 2025 diff hist +21 Home No edit summary Tag: Visual edit
- 17:1317:13, 22 March 2025 diff hist +144 Home No edit summary Tag: Visual edit
- 17:1217:12, 22 March 2025 diff hist +3,965 N 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
- 17:0917:09, 22 March 2025 diff hist +76 Home No edit summary Tag: Visual edit
- 16:5216:52, 22 March 2025 diff hist +4 N MediaWiki:Mainpage Created page with "Home" current
- 16:5216:52, 22 March 2025 diff hist +77 N Home Created page with "Welcome to the cppforover.com - a website about the C++ programming language."