Explain how can I write functions that take a variable number of arguments?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is string function in c?

0 Answers  


Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..

2 Answers  


How would you find a cycle in a linked list?

3 Answers   NSN,


how to find anagram without using string functions using only loops in c programming

0 Answers  


what are # pragma staments?

0 Answers  






What is a const pointer?

0 Answers  


How pointer is different from array?

0 Answers  


How can you check to see whether a symbol is defined?

0 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+

1 Answers   Reliance,


consagous technology placement paper

3 Answers   Consagous, Sypra,


What is function prototype in c with example?

0 Answers  


Categories