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 is difference between stdio h and conio h?
What is the difference b/w main() in C language and main() in C++.
Describe advantages and disadvantages of the various stock sorting algorithms
Why calloc is better than malloc?
If input is 123 then how to print 100 and 20 and 3 seperately?
Write a program to check prime number in c programming?
What is the use of extern in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
What is the maximum length of an identifier?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion