• 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 Windows

    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

    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

    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

    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

    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

    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

    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++

    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

    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

    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)

    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
  • Memmove function in C

    Memmove function in C
    Void function * memmove (void * str1, const void * str2, size_t n) Copy n characters from str2 to str1, but to solve the matching of memory blocks, memmove () is a safe approach
  • Memset () function in C

    Memset () function in C
    The function void * memset (void * str, int c, size_t n) copies the character c (an unsigned char) to the first n characters of the string pointed to by parameter str.
  • Strcat function in C

    Strcat function in C
    The char * strcat function (char * dest, const char * src) append the string pointed to by src, at the end of the string pointed to by dest.
  • Strncat () function in C

    Strncat () function in C
    Char * strncat (char * dest, const char * src, size_t n) append (string), pointed to by src, at the end of the string pointed to by dest, with a length of up to n characters.
  • The strchr () function in C

    The strchr () function in C
    Char * strchr function (const char * str, int c) looks for the first occurrence of the character c (an unsigned char) in the string pointed to by parameter str.
  • The function strcmp () in C

    The function strcmp () in C
    The function int strcmp (const char * str1, const char * str2) compares the string pointed to by sr1 with the string pointed to by srt2.
  • The function strncmp () in C

    The function strncmp () in C
    The function int strncmp (const char * str1, const char * str2, size_t n) compares the first n bytes of str1 and str2.
  • The strcoll () function in C

    The strcoll () function in C
    The function int strcoll (const char * str1, const char * str2) compares strings str1 and str2. The result depends on setting LC_COLLATE.