Transcription: The next one is default parameters. With C, if a function has two parameters, you have to pass it two parameters when you call it. You have no choice. The number of parameters always has to match. With C++, you can declare that a parameter has a default value. This lets you skip it when you call the function. Let me show you how that works.