How to write in a function declaration and in function call in
which the function has 'n' number of varible or arguments?
Answer Posted / kiran kumar yakkala
returntype function_name(int counter,...)
here first one is the counter tells about how many no are
going to use
... specifies variable no of arguments
for further clarificaiton, refer "Let us C" book
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what standard functions are available to manipulate strings?
Why does everyone say not to use gets?
What is the use of bit field?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is #pragma statements?
What is %d called in c?
code for find determinent of amatrix
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
How can I find out the size of a file, prior to reading it in?
Can a pointer be volatile in c?
How can I direct output to the printer?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is difference between array and pointer in c?
What is the difference between the expression “++a” and “a++”?
Explain the use of keyword 'register' with respect to variables.