Search Results

2
votes

Starting Graphics & Games Programming (Java and maybe C++)

I have this book: Beginning C++ Through Game Programming. It might seem trivial at first, but it teaches you a-lot a …
1
vote

Best C++ Resource

I use Cprogramming.com, there are quite a few articles and tutorials there. Some of them may be outdated/slightly old. It gets the job done tho …
0
votes

How do you add a timed delay to a C++ program?

On Windows you can include the windows library and use "Sleep(0);" to sleep the program. It takes a value that represents milliseconds. …
2
votes

C++: “std::endl” vs “\n”

I've always had a habit of just using std::endl because it is easy for me to see. …
2
votes

<iostream> vs. <iostream.h> vs. “iostream.h”

Here is a decent link article. …