0:05News - You can get Visual Studio Community Edition for free (better than express)
0:05News - You can get Visual Studio Community Edition for free (better than express)
0:05News - You can get Visual Studio Community Edition for free (better than express)
2:35VS tip - can load the last thing you had open when you start it next time
2:35VS tip - can load the last thing you had open when you start it next time
2:35VS tip - can load the last thing you had open when you start it next time
4:00The story of OutputDebugStringA (it all started with ASCII)
4:00The story of OutputDebugStringA (it all started with ASCII)
4:00The story of OutputDebugStringA (it all started with ASCII)
6:53Encodings: numbers that mean something more
6:53Encodings: numbers that mean something more
6:53Encodings: numbers that mean something more
10:38VS: Finding the debug windows
10:38VS: Finding the debug windows
10:38VS: Finding the debug windows
13:37See? Letters are numbers!
13:37See? Letters are numbers!
13:37See? Letters are numbers!
14:35Escape sequences (\n and friends)
14:35Escape sequences (\n and friends)
14:35Escape sequences (\n and friends)
17:40Bases can trip you up
17:40Bases can trip you up
17:40Bases can trip you up
19:20Back to escape sequences
19:20Back to escape sequences
19:20Back to escape sequences
20:53Note: must type \\ to get real \'s
20:53Note: must type \\ to get real \'s
20:53Note: must type \\ to get real \'s
22:10Platform newline niceties
22:10Platform newline niceties
22:10Platform newline niceties
23:55What to do if VS crashes (like it just did)
23:55What to do if VS crashes (like it just did)
23:55What to do if VS crashes (like it just did)
25:22Windows vs. Linux vs. Mac OS newlines
25:22Windows vs. Linux vs. Mac OS newlines
25:22Windows vs. Linux vs. Mac OS newlines
26:59Back to OutputDebugStringA
26:59Back to OutputDebugStringA
26:59Back to OutputDebugStringA
30:18The consequences of that move: C Error Messages
30:18The consequences of that move: C Error Messages
30:18The consequences of that move: C Error Messages
30:55A glimpse into the seedy Macro underbelly of the Win32 API
30:55A glimpse into the seedy Macro underbelly of the Win32 API
30:55A glimpse into the seedy Macro underbelly of the Win32 API
32:50Note: Unicode is default in VS
32:50Note: Unicode is default in VS
32:50Note: Unicode is default in VS
34:04Let's talk about variables
34:04Let's talk about variables
34:04Let's talk about variables
35:11Which means we should talk about CPUs and memory
35:11Which means we should talk about CPUs and memory
35:11Which means we should talk about CPUs and memory
36:12Asking for memory (declaring vars)
36:12Asking for memory (declaring vars)
36:12Asking for memory (declaring vars)
37:15Neat learning anecdote (what does = mean?)
37:15Neat learning anecdote (what does = mean?)
37:15Neat learning anecdote (what does = mean?)
40:10What is a variable *really*? (Let's 'watch' it)
40:10What is a variable *really*? (Let's 'watch' it)
40:10What is a variable *really*? (Let's 'watch' it)
41:20Uninitialized memory can be anything
41:20Uninitialized memory can be anything
41:20Uninitialized memory can be anything
43:15Debug 'Stepping' (running a program line by line)
43:15Debug 'Stepping' (running a program line by line)
43:15Debug 'Stepping' (running a program line by line)
44:23Programming doesn't have to be math-y (int x = 5; covers a lot)
44:23Programming doesn't have to be math-y (int x = 5; covers a lot)
44:23Programming doesn't have to be math-y (int x = 5; covers a lot)
45:25Different types of numbers in C (char, short, int, signed-ness)
45:25Different types of numbers in C (char, short, int, signed-ness)
45:25Different types of numbers in C (char, short, int, signed-ness)
49:37How can you tell how much you can hold with 8 bits?
49:37How can you tell how much you can hold with 8 bits?
49:37How can you tell how much you can hold with 8 bits?
54:06The rest of the int family (short, int)
54:06The rest of the int family (short, int)
54:06The rest of the int family (short, int)
55:56VS tip: F5 to start debug, Shift-F5 to stop
55:56VS tip: F5 to start debug, Shift-F5 to stop
55:56VS tip: F5 to start debug, Shift-F5 to stop
56:14Math consequences of number size limits (overflows)
56:14Math consequences of number size limits (overflows)
56:14Math consequences of number size limits (overflows)
59:02Okay. What is *actually* happening when we run programs?
59:02Okay. What is *actually* happening when we run programs?
59:02Okay. What is *actually* happening when we run programs?
1:01:15The registers window
1:01:15The registers window
1:01:15The registers window
1:02:00What registers are
1:02:00What registers are
1:02:00What registers are
1:04:56The MOV instruction
1:04:56The MOV instruction
1:04:56The MOV instruction
1:07:28VS Tip: hover over hex in assembly to see its decimal value
1:07:28VS Tip: hover over hex in assembly to see its decimal value
1:07:28VS Tip: hover over hex in assembly to see its decimal value
1:09:09Watching the assembly work in the watch window
1:09:09Watching the assembly work in the watch window
1:09:09Watching the assembly work in the watch window
1:10:58The size of eax vs. the size of a char
1:10:58The size of eax vs. the size of a char
1:10:58The size of eax vs. the size of a char
1:14:09The moral: The Asm matches the C. You can read this
1:14:09The moral: The Asm matches the C. You can read this
1:14:09The moral: The Asm matches the C. You can read this
1:15:23The moral: How things really work is worth knowing
1:15:23The moral: How things really work is worth knowing
1:15:23The moral: How things really work is worth knowing