9 lines
338 B
Markdown
9 lines
338 B
Markdown
|
# Function parameters
|
||
|
|
||
|
A function in ++C, as any other C-like language, can accept parameters. Parameters in ++C act as function-scope local variables, that can be assigned to.
|
||
|
|
||
|
## Variadic parameters
|
||
|
|
||
|
**NOTE**: This is not yet implemented, although it is a planned feature.
|
||
|
|
||
|
In ++C, variadic parameters are supported. That means
|