Vidyalelo
C Programming · Q13

C Fundamentals

Programming · C Programming · question 13

Q13

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

Answer: Option D

Solution

Answer: Option D
Solution:
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