how many argument we can pas in in a function
Answer Posted / sudeep dutta
Any number of parameters can be passed.The parameters may be
of any type.But the number of parameters used completely
depends on the function that you have declared.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is uint8 in c?
Is linux written in c?
what value is returned to operating system after program execution?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What is the difference between typedef struct and struct?
Why is c so popular?
What is wild pointer in c?
Write a code to remove duplicates in a string.
Explain what is the use of a semicolon (;) at the end of every program statement?
Why doesn't C support function overloading?
What is getch () for?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What are global variables?
#include