#include
show(int t,va_list ptr1)
{
int a,x,i;
a=va_arg(ptr1,int)
printf("
%d",a)
}
display(char)
{
int x;
listptr;
va_star(otr,s);
n=va_arg(ptr,int);
show(x,ptr);
}
main()
{
display("hello",4,12,13,14,44);
}
No Answer is Posted For this Question
Be the First to Post Answer
How can you convert integers to binary or hexadecimal?
Why is c still so popular?
Explain how do you determine a file’s attributes?
How do you use a 'Local Block'?
Is c functional or procedural?
What is the difference between fread and fwrite function?
Write a program to swap two numbers without using third variable in c?
What are the standard predefined macros?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the acronym for ansi?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;