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
Why do we use int main instead of void main in c?
What is omp_num_threads?
What is difference between %d and %i in c?
Explain what are the different data types in c?
What is the most efficient way to store flag values?
What are void pointers in c?
What does %p mean?
how to find binary of number?
Calculate 1*2*3*____*n using recursive function??
Why do we use return in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the size of a union variable?
What is a pointer on a pointer in c programming language?
What are the types of pointers?