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 |
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What is actual argument?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Explain what happens if you free a pointer twice?
How can I swap two values without using a temporary?
How can I find out if there are characters available for reading?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.