Difference between revisions of "Intermediate C++ Game Programming Tutorial 1"
From Chilipedia
(Created page with "This video talks about the course syllabus for the Intermediate C++ tutorial series (the shit we gonna learn) and the prerequisites for following this series (what you need to...") |
|||
Line 1: | Line 1: | ||
− | + | We've been using <code>int</code>s and <code>float</code>s and <code>bool</code>s this whole time, but have you ever wondered about a day in the life of a variable? In this video, we find that shit out, and so much more. We also learn about the cousins of <code>int</code> and <code>float</code>, adding to our arsenal basic data types we can use. What's the endgame you ask? This stuff is gonna help us understand pointers and strings, and it's just interesting shit. | |
== Topics Covered == | == Topics Covered == | ||
− | * | + | * The concept of memory (RAM) |
+ | * Binary and hexadecimal number systems | ||
+ | * <code>char</code>, <code>short</code>, <code>long long</code>, <code>double</code> | ||
+ | * <code>unsigned</code> integral types | ||
+ | * The ranges and sizes of basic data types | ||
+ | * Layout of variables in memory | ||
+ | * Correspondence between C++ code and CPU operations | ||
− | == | + | == Optional Video - Red Pill [Memory and Data] == |
− | + | ||
− | |||
== Video Timestamp Index == | == Video Timestamp Index == |
Revision as of 23:03, 4 May 2017
We've been using int
s and float
s and bool
s this whole time, but have you ever wondered about a day in the life of a variable? In this video, we find that shit out, and so much more. We also learn about the cousins of int
and float
, adding to our arsenal basic data types we can use. What's the endgame you ask? This stuff is gonna help us understand pointers and strings, and it's just interesting shit.
Contents
Topics Covered
- The concept of memory (RAM)
- Binary and hexadecimal number systems
-
char
,short
,long long
,double
-
unsigned
integral types - The ranges and sizes of basic data types
- Layout of variables in memory
- Correspondence between C++ code and CPU operations
Optional Video - Red Pill [Memory and Data]
Video Timestamp Index
Homework
None!