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

array of pointer pointer to array pointer to pointer

1 Answers   MAHINDRA,


What is the purpose of macro in C language?

0 Answers   Fidelity,


why do we use # in c-language?

1 Answers  


What language is lisp written in?

0 Answers  


Why calloc is better than malloc?

0 Answers  


How do you define structure?

0 Answers  


What is the usage of the pointer in c?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


Why doesnt that code work?

0 Answers  


11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


which will be first in c compiling ,linking or compiling ,debugging.

3 Answers   Sonata,


print the table 5 in loops

3 Answers  


Categories