• How to Set Up SFML in a Project on Visual StudioHow 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 CHow 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 StudioHow 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++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 WindowsHow 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 StatementsHow 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 StudioHow 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 CHow 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 SharpHow 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 CHow 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 StudioHow 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++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 ProgramHow 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 CHow 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)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 EffectivelyHow 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
  • How to Use Deploy Keys on GithubHow to Use Deploy Keys on Github
    'Deploy keys' in GitHub allow your server to connect directly to your GitHub repository. When your server is connected, you can push builds directly from your repository to your
  • How to Set Up and Use GitHow to Set Up and Use Git
    Git is one of the most widely used version control systems for software development. Built by Linus Torvalds in 2005, Git focuses on speed, data integrity, and support for
  • How to Create a Pull Request on GithubHow to Create a Pull Request on Github
    Before making a pull request on Github, you will need to create your own branch off the master branch and make sure it is up to date. After that you are free to make and commit
  • How to Clone a Repository on GithubHow to Clone a Repository on Github
    Git is a very common tool in collaborative software development. Cloning a repository locally stores the latest changes of a project, allowing you to branch off and make your own