What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / guest
error exist due to nat declaring datatype for i
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Is it better to bitshift a value than to multiply by 2?
Is a pointer a kind of array?
how to find binary of number?
What is data structure in c and its types?
What is the difference between mpi and openmp?
What is a const pointer?
Is fortran still used today?
What is #define used for in c?
What is the difference between procedural and functional programming?
What does the && operator do in a program code?
What is define directive?
What is sorting in c plus plus?
Explain modulus operator.
Write a program to print factorial of given number using recursion?
#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); }