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
Discuss the function of conditional operator, size of operator and comma operator with examples.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
what is the basis for selection of arrays or pointers as data structure in a program
Is c still used?
How can I read in an object file and jump to locations in it?
Write a code to generate a series where the next element is the sum of last k terms.
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
In C programming, how do you insert quote characters (‘ and “) into the output screen?
How would you obtain the current time and difference between two times?
What do you mean by command line argument?
What is the Purpose of 'extern' keyword in a function declaration?
What is a 'null pointer assignment' error?
What is the use of a ‘ ’ character?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What are the general description for loop statement and available loop types in c?