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

Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.

1 Answers   Wipro,


Difference between for loop and while loop?

1 Answers  


how to generate sparse matrix in c

3 Answers  


Differentiate call by value and call by reference?

0 Answers   Cyient,


what does keyword ‘extern’ mean in a function declaration?

1 Answers   Emerson,






What is actual argument?

0 Answers  


What is period operator in c?

3 Answers   Wipro,


#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }

2 Answers  


What is malloc() function?

0 Answers  


char p="data"; printf(p);

2 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


what are the advantages & disadvantages of unions?

2 Answers  


Categories