KwickClips C++
C++: 28 short revision clips
One idea per clip, with the answer written out underneath. Each clip links back to the full C++ lesson it came from.
What is the first index?43 sec
Where does i start?40 sec
Which comes first, row or column?43 sec
Is the array copied?41 sec
What marks the end of a C string?41 sec
Why did only Riya print?44 sec
Which header do they need?46 sec
Why does while (s[n]) stop?42 sec
What does &marks give?41 sec
What does int *p declare?42 sec
How far does p + 1 jump for an int?43 sec
What is a[i] the same as?44 sec
Who frees heap memory?43 sec
Which one gives zeros?43 sec
Why use a new pointer for realloc?42 sec
Does a leak give an error?40 sec
Where is the semicolon needed?41 sec
When do you use ->?40 sec
What is the size of a union?44 sec
Where does enum counting start?41 sec
What two things does fopen need?43 sec
Which writes formatted data to a file?44 sec
Which mode erases the file?40 sec
What does fopen return for a missing file?40 sec
What runs first, preprocessor or compiler?41 sec
Should #define end with a semicolon?42 sec
What should SQ be?41 sec
When is code kept or dropped?43 sec
