how many argument we can pas in in a function

Answers were Sorted based on User's Feedback



how many argument we can pas in in a function..

Answer / parthipan

As much as we can. But As all the function parameters are
passed through the stack there are changes that the stack
may overflow which will cause abnormal termination.

Is This Answer Correct ?    27 Yes 0 No

how many argument we can pas in in a function..

Answer / venu gopal raju

depending on our requirement we can pass many as arguments
to a function.

Is This Answer Correct ?    13 Yes 2 No

how many argument we can pas in in a function..

Answer / prakash.m

any number of arguments based on our functionality

Is This Answer Correct ?    6 Yes 1 No

how many argument we can pas in in a function..

Answer / binod

depend upon the user

Is This Answer Correct ?    11 Yes 7 No

how many argument we can pas in in a function..

Answer / karthick

infinity

Is This Answer Correct ?    10 Yes 8 No

how many argument we can pas in in a function..

Answer / 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

how many argument we can pas in in a function..

Answer / shruti

i think it depends upon the compiler version..

Is This Answer Correct ?    2 Yes 0 No

how many argument we can pas in in a function..

Answer / roxin thomas

Any number of arguments can be passed to a function being
called. However, the type, order and number of the actual
and formal arguments must always be same.

Is This Answer Correct ?    2 Yes 0 No

how many argument we can pas in in a function..

Answer / varsha vilas kalebag

mnay

Is This Answer Correct ?    4 Yes 3 No

how many argument we can pas in in a function..

Answer / balaji

n arguments

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

What is volatile keyword in c?

0 Answers  


What is the purpose of main( ) in c language?

0 Answers  


What are called c variables?

0 Answers  


What is c basic?

0 Answers  


What does %f mean c?

1 Answers  






what is data structure

5 Answers   Maveric, TCS,


What is the equivalent code of the following statement in WHILE LOOP format?

0 Answers  


Why is c faster?

0 Answers  


Write a program to accept a character & display its corrosponding ASCII value & vice versa?

9 Answers  


What is data structure in c programming?

0 Answers  


write a program to concatenation the string using switch case?

0 Answers  


If null and 0 are equivalent as null pointer constants, which should I use?

0 Answers  


Categories