9.how do you write a function that takes a variable number
of arguments? What is the prototype of printf () function?
10.How do you access command-line arguments?
11.what does ‘#include<stdio.h>’ mean?
12.what is the difference between #include<> and #include”…”?
13.what are # pragma staments?
14.what is the most appropriate way to write a
multi-statement macro?



9.how do you write a function that takes a variable number of arguments? What is the prototype of p..

Answer / vid

145
1!=1,4!=24,5!=120
1+24+120=145

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Interview Questions

main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


how to capitalise first letter of each word in a given string?

0 Answers  


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  


p*=(++q)++*--p when p=q=1 while(q<=6)

0 Answers   KINPOE,


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  






Explain what is the difference between the expression '++a' and 'a++'?

0 Answers  


What is the difference function call by value & function call by reference?

6 Answers  


What is difference between constant pointer and constant variable?

0 Answers   Hexaware,


hi any body pls give me company name interview conduct "c" language only

0 Answers  


What is keyword in c?

0 Answers  


What is the difference between #include <header file> and #include “header file”?

0 Answers  


How do you override a defined macro?

0 Answers  


Categories