what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sandeep
1,1,2
| Is This Answer Correct ? | 5 Yes | 15 No |
Post New Answer View All Answers
Is it possible to have a function as a parameter in another function?
Explain function?
Can the size of an array be declared at runtime?
What is string function in c?
How are Structure passing and returning implemented by the complier?
Why c is called top down?
Differentiate Source Codes from Object Codes
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Explain b+ tree?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is the use of printf() and scanf() functions?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is c basic?
Is javascript written in c?