how many argument we can pas in in a function
Answer Posted / 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 |
Post New Answer View All Answers
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Why is it usually a bad idea to use gets()? Suggest a workaround.
How can you find the day of the week given the date?
What is break in c?
c program to compute AREA under integral
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the method to save data in stack data structure type?
What are the properties of union in c?
How do you determine whether to use a stream function or a low-level function?
What is array in c with example?
What is the difference between union and structure in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How can I dynamically allocate arrays?
What is c basic?
What are linker error?