Programming & Development - Category Archive


Jul 17
Thursday

Game Career Guide 2008

Filed under Programming & Development/Game Development

Soon enough, Talk Binary will be launching video game demos anyone can pick up and play, as well as tinker with the source code in order to learn and make your own games! Meanwhile, for those interested in learning about how to get into the gaming industry, here is something for you to definitely check out!

Game Developer - Game Career Guide 2008


Continue…

All entries filed under Programming & Development


  • Advanced Control Flow - While Loop
    no responses - Posted 07.11.08

    Introducing the while loop with an example and several exercises. Meant for beginners.

    continue
  • Advanced Control Flow - For Loop
    no responses - Posted 07.09.08

    Introducing a basic for loop with a detailed break down of every line of code that makes this loop. Practice problems are also provided.

    continue
  • Basic Control Flow Continued
    no responses - Posted 06.25.08

    By this time you should be familiar with the basics behind If and Else if statements. Below you’ll see more examples and more ways to use Control Flow in your programming.
    1. You’ll learn more advanced ways of manipulating control flow in your program.
    2. You’ll also learn how to declare and initialize boolean variables.

    Boolean Variables
    Boolean variables [...]

    continue
  • Basic Control Flow
    no responses - Posted 06.24.08

    In the following tutorial, you’ll learn how to use if, and if-else statements. They are useful for deciding on what lines of code to execute based on values of previous variables in your program.

    The If Statement
    An example is as follows

    int x;
    if ( condition ) x = 50; //If condition returns TRUE, assign 50 to X.
     
    In [...]

    continue
  • Fundamental Data Type String
    4 responses - Posted 06.22.08

    In this tutorial you shall learn how to use
    1. String Data Type
    You should immediately notice that the declaration and assignment of a string is similar to int and doubles which you learned previously.

    Declaring and Initializing the String
    First make sure you have the appropriate headers in the file where you plan to use string objects.
    #include <string>
    using [...]

    continue
  • Start Programming in C++
    1 response - Posted 06.03.08

    Want to start programming in C++? No worries. There is nothing to buy. It also isn’t difficult to get started! Anyone can learn! Talk Binary offers a variety of tutorials to get you started on the right track and right away! We’ll also step through every step of the process so you can get [...]

    continue