What are the different properties of 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 function pointer c?

0 Answers  


What is a pragma?

0 Answers  


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


How can I get back to the interactive keyboard if stdin is redirected?

0 Answers  


What is meant by high-order and low-order bytes?

0 Answers  


Explain #pragma statements.

0 Answers  


What is a lvalue

0 Answers   Global Logic,


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


What are the uses of a pointer?

0 Answers  


why we need function pointers?

3 Answers  


How can we open a file in Binary mode and Text mode?what is the difference?

1 Answers   PanTerra,


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


Categories