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

main() {int a=200*200/100; printf("%d",a); }

14 Answers   TCS,


When would you use a pointer to a function?

0 Answers  


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


What is the difference between getch() and getche()?

1 Answers   NSPL,


Is c still relevant?

0 Answers  


Explain what happens if you free a pointer twice?

0 Answers  


#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}

3 Answers  


Explain how do you override a defined macro?

0 Answers  


How arrays can be passed to a user defined function

0 Answers  


Explain what are the standard predefined macros?

0 Answers  


1 1 12 21 123 321 12344231 how i creat it with for loop??

1 Answers  


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


Categories