What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / siva
1 1 2
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What are keywords c?
What tq means in chat?
What is difference between far and near pointers?
How do shell structures work?
Difference between Shallow copy and Deep copy?
Write a program with dynamically allocation of variable.
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is the difference between new and malloc functions?
What is the maximum no. of arguments that can be given in a command line in C.?
Is malloc memset faster than calloc?
how should functions be apportioned among source files?
number of times a digit is present in a number
Write a program which returns the first non repetitive character in the string?
How we can insert comments in a c program?
What is the need of structure in c?