What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / j jhawahar
1,1,2
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Difference between strcpy() and memcpy() function?
develop algorithms to add polynomials (i) in one variable
Do pointers store the address of value or the actual value of a variable?
Why is structure important for a child?
Is there a built-in function in C that can be used for sorting data?
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is ponter?
How are strings stored in c?
What is sizeof c?
Why void main is used in c?
What is structure padding and packing in c?
Explain the advantages and disadvantages of macros.
What is the use of a conditional inclusion statement in C?
What is a method in c?
What are the types of macro formats?