Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

default argument value in C

Tags:

c

Is it true this is not supported?

Answer: It is not supported.

like image 550
Tyler Avatar asked Dec 10 '22 20:12

Tyler


1 Answers

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

like image 108
avakar Avatar answered Dec 25 '22 04:12

avakar