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

depending upon the range of the datatype

Is This Answer Correct ?    0 Yes 2 No

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

Answer / revathy

how do u say that only 253 arguments can be passed.. please
justify

Is This Answer Correct ?    0 Yes 4 No

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

Answer / dushyant

i think we can pass four type of arguement in a function:-
1)function with argument with return a value

2) function with argument without return a value
3) function without argument with return a value
4) function with argument without return a value
5) function without argument without return a value

Is This Answer Correct ?    0 Yes 4 No

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

Answer / vivek

three

Is This Answer Correct ?    3 Yes 16 No

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

Answer / karthick

only two arguments

Is This Answer Correct ?    8 Yes 30 No

Post New Answer

More C Interview Questions

What is the difference between malloc() and calloc() function in c language?

0 Answers  


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks

0 Answers  


Are pointers really faster than arrays?

0 Answers  


write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????

7 Answers   Infosys, TCS,






what is the diffrenet bettwen HTTP and internet protocol

0 Answers  


Can a variable be both const and volatile?

0 Answers  


Find occurence of a character in a sting.

3 Answers   TCS,


How can you invoke another program from within a C program?

0 Answers  


what r the cpu registers r ther?

1 Answers  


What are the types of type specifiers?

0 Answers  


4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none

10 Answers  


Categories