Q:

HOW MANY ARGUMENTS CAN BE PASSED TO A FUNCTION IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

HOW MANY ARGUMENTS CAN BE PASSED TO A FUNCTION IN C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Any number of arguments can be passed to a function. There is no limit on this. Function arguments are stored in stack memory rather than heap memory. Stack memory allocation is depending on the operating system.

So, any number of arguments can be passed to a function as much as stack has enough memory. Program may crash when stack overflows.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT IS STATIC FUNCTION IN C?... >>
<< WHERE SHOULD TYPE CAST FUNCTION NOT BE USED IN C?...