Skip to content

Optimization & Engineering

  • Author
  • Thank You
Optimization & Engineering

Blog

software

Tips to Read Other People’s Code

Bycoliveira December 3, 2009January 12, 2010

Reading code is a basic skill that working programmers need to acquire in order to work on development teams. It is really hard to expect that you will work in isolation of other people’s code. Therefore, reading code is a skill that can make you much more productive. Although it not easy to learn this…

Read More Tips to Read Other People’s CodeContinue

software

The Way a Program Starts in Windows

Bycoliveira December 2, 2009January 12, 2010

If you write a program in C/C++ for Windows, you are very close to the interface with the operating system. For this reason, it is also interesting to have some idea of what it is doing. There are two main types of Windows programs: graphical programs and console-based programs. The way Windows determine what kind…

Read More The Way a Program Starts in WindowsContinue

software

Understanding const pointers and variables in C++

Bycoliveira November 21, 2009January 16, 2010

In modern C++, we are used to see const pointers. They are a useful way to avoid changes in memory passed to a function. As such, they are very common in function declarations. The const word, however, has other uses. It turns out that when the const keyword is applied to the pointer itself (instead…

Read More Understanding const pointers and variables in C++Continue

Page navigation

Previous PagePrevious 1 … 31 32 33 34 35 … 52 Next PageNext

© 2025 Optimization & Engineering - WordPress Theme by Kadence WP

  • Author
  • Thank You