Tyler
Tyler

Reputation: 4709

default argument value in C

Is it true this is not supported?

Answer: It is not supported.

Upvotes: 3

Views: 914

Answers (1)

avakar
avakar

Reputation: 32635

Yes.

In computer programming, a default argument is an argument to a function that a programmer is not required to specify. In most programming languages, functions may take one or more arguments. Usually, each argument must be specified in full (this is the case in the C programming language).

(Emphasis mine.)

Upvotes: 14

Related Questions