Which header file should you include if you are to develop a function which can accept variable number of arguments?


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

Post New Answer

More C Interview Questions

question-how to run a c programme.

6 Answers  


b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720

1 Answers   HCL,


Why do we use namespace feature?

0 Answers  


Explain what will the preprocessor do for a program?

0 Answers  


Add Two Numbers Without Using the Addition Operator

0 Answers  






What is use of pointer?

0 Answers  


What is variable declaration and definition in c?

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


how should functions be apportioned among source files?

0 Answers  


what is linkage error when it occurs in c program

3 Answers  


How can I direct output to the printer?

0 Answers  


array of pointer pointer to array pointer to pointer

1 Answers   MAHINDRA,


Categories