how many argument we can pas in in a function
Answer Posted / parthipan
As much as we can. But As all the function parameters are
passed through the stack there are changes that the stack
may overflow which will cause abnormal termination.
| Is This Answer Correct ? | 27 Yes | 0 No |
Post New Answer View All Answers
How is null defined in c?
The file stdio.h, what does it contain?
Why string is used in c?
What are the salient features of c languages?
What are the types of pointers?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is the purpose of ftell?
Explain is it valid to address one element beyond the end of an array?
What is a stream water?
Write a program to find factorial of a number using recursive function.
What happens if a header file is included twice?
Explain b+ tree?
Write a Program to find whether the given number or string is palindrome.
How can you access memory located at a certain address?