how many argument we can pas in in a function
Answers were Sorted based on User's Feedback
Answer / apurve kadawat
We can pass any no.of parameters.The upperlimit can be found
out by knowing the stack size for that function alloted by
the operating system.Therefore it is dependent upon the
operating system how much stack it is allocating.
| Is This Answer Correct ? | 0 Yes | 0 No |
depending upon requirements we can pass no of arguments in
functions
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sudeep dutta
Any number of parameters can be passed.The parameters may be
of any type.But the number of parameters used completely
depends on the function that you have declared.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / subbu
maximum number of arguments for a single function is 253
| Is This Answer Correct ? | 2 Yes | 3 No |
How can I call a function, given its name as a string?
What does *p++ do? What does it point to?
What is scope of variable in c?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What are the advantages of c preprocessor?
what is unsigened char and what is the difference from char
Why we use void main in c?
void main() { int i=5; printf("%d",i+++++i); }
Write a Program to find whether the given number or string is palindrome.
What is the scope of static variable in c?
What's the total generic pointer type?
What are nested functions in c?