how many argument we can pas in in a function
Answers were Sorted based on User's Feedback
Answer / revathy
how do u say that only 253 arguments can be passed.. please
justify
| Is This Answer Correct ? | 0 Yes | 4 No |
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 |
What does the c preprocessor do?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What does 1f stand for?
What is the purpose of the fflush() function in C?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What is a structure in c language. how to initialise a structure in c?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
How do we open a binary file in Read/Write mode in C?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Is main is user defined function?