What is the maximum number of arguments that can be passed to a C function?
A. 10
B. 255
C. 127
D. No limit
Answer: Option D
Solution (By Examveda Team)
The maximum number of arguments that can be passed to a C function is Option D: No limit. In C, there is no hard-coded limit on the number of arguments you can pass to a function. However, practical limitations may exist based on factors like system memory and stack size.So, the correct answer is: Option D: No limit
Join The Discussion