+ 3
How many max number of arguments can present in function in c99 compiler?
4 Answers
+ 5
Why, do you want to make a massive function?
+ 3
according to C standard an implementation should support at least 127 parameters/arguments in a function
AND According to C++ standard it should support at least 256 parameters/arguments in a function.
+ 2
i m asking , just for knowledge that how many max. no. of arg. can present in funtn.??
+ 1
Why do you want to worry about max arguments? They is no constrain on that.
We should use fewer arguments as possible. For longer arguments, we should put in in object or array arguments.