Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it true this is not supported?

Answer: It is not supported.

share|improve this question
3  
It is allowed in C++ however. – rlbond Jul 12 '09 at 6:15

1 Answer

up vote 14 down vote accepted

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.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.