how many argument we can pas in in a function
Answer Posted / bryan olson
The language allows any number, but a C implementation may
impose a limit. The current standard requires conforming
compilers to allow 127 parameters.
[International Standard ISO/IEC 9899:1999 Programming
Languages -- C, Section 5.2.4.1 Translation limits]
Good answers: "any number", "many", "as many as we need",
"I'd have to look that up."
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the types of type qualifiers in c?
How to explain the final year project as a fresher please answer with sample project
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What are the usage of pointer in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is bin sh c?
What is the difference between malloc() and calloc()?
What are formal parameters?
while initialization of array why we use a[][2] why not a[2][]...?
What are different types of variables in c?
Do you know the purpose of 'register' keyword?
What is the purpose of the statement: strcat (S2, S1)?
What is the difference between Printf(..) and sprint(...) ?
string reverse using recursion
Can a variable be both static and volatile in c?