- How to Quick Sort an Array in C++

Sorting is a very useful tool in programming. It is often necessary to arrange the members of a list in ascending or descending order. A sorted list allows a user to search and
- How to Program in C++ and Batch

C++ is a mid-level programming language—it easy to write and it runs very quickly. As a result, it is widely used to develop games, business apps, and software, such as Google
- How to Create an Alert in C

Sometimes, when writing a program, you need to create a way to get the attention of the user to bring their focus back to the program. Alerts are a very useful way to do that. If
- How to Calculate Your Wage in C++

You may find it useful or interesting to know how much you will earn in a month or year. While it is possible to do this calculation manually or with a calculator, writing a
- How to Set Up SFML in a Project on Visual Studio

Setting up SFML in Visual Studio 2017 or 2019 is similar to setting up SDL, GLFW, freeGLUT, and GLEW, with two peculiarities: there are 29 .lib files and 11 .dll files. It is
- How to Create Pointers in C

Pointers are the nightmare of every new C programmer. However, they are also the feature that made C the widespread, powerful programming language it is until today. Like many
- How to Set Up OpenGL‐GLFW‐GLAD on a Project with Visual Studio

Many programmers prefer OpenGL for graphics. If you are one of them, you are strongly advised by its producer to use a window toolkit (such as GLFW) and an OpenGL loading libraries
- How to Write to a Text File in C++

This article illustrates the process of creating and writing to a text file in C++ using the Microsoft Visual Studio application on a Windows computer. The program utilizes the
- How to Run C/C++ Program in Netbeans on Windows

This tutorial will take you through the process of running a C/C++ program with the Netbeans IDE (Integrated Development Environment) using screenshots as tools for understanding
- How to Use C++ to Write Cin and Cout Statements

C++ is a very in depth language and can be used for very complex operations, but as with learning any new skill, it is necessary to first learn the fundamentals. This aim of this
- How to Set Up an OpenGL FreeGLUT GLEW Template Project in Visual Studio

Many programmers prefer OpenGL for graphics. If you are one of them, you are strongly advised by its producer, to use a window toolkit (such as freeGLUT) and an OpenGL loading
- How to Check Null in C

In C, NULL is a symbolic constant that always points to a nonexistent point in the memory. Although many programmers treat it as equal to 0, this is a simplification that can trip
- How to Create a Program in C Sharp

C# is a great programming language, and all the tools you need to get started are free and easy to use. While C# is usually associated with Microsoft and closed source, free
- How to Delay in C

Did you ever want to make a C program wait for a certain time? You can set up a technique to allow time to tick away, for example: when showing a splash page (a notice or hint) for
- How to Set Up SDL with Visual Studio

Whether you're a novice C++ programmer or a veteran software developer, graphics programming is an educational and rewarding experience. Simple DirectMedia Layer is a C library
- How to Write Standard Code in C++

There are infinitely many ways to program computers. Ultimately, it is the choice of the programmer how to accomplish what they need. There are, however, many 'best practices' for
- How to Get Color in C Program

Changing the color of text or shapes in your C program can help them pop when the user runs your program. Changing the color of your text and objects is a fairly straightforward
- How to Learn to Program in C

C is one of the older programming languages. It was developed in the 70s, but it is still very powerful thanks to how low-level it is. Learning C is a great way to introduce
- How to Compile a C Program Using the GNU Compiler (GCC)

This wikiHow teaches you how to compile a C program from source code by using the GNU Compiler (GCC) for Linux and Minimalist Gnu (MinGW) for Windows. Open up a terminal window on
- How to Use Git Effectively

This article explores the source code management and collaboration system called Git and provides guidance on how to get the most value from Git. Git can be used as a local source