what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / 123ghouse@gmail.com
3,2,2;
| Is This Answer Correct ? | 21 Yes | 8 No |
Post New Answer View All Answers
What are the 4 data types?
What is #include stdio h?
How can I split up a string into whitespace-separated fields?
Why we use void main in c?
When is a “switch” statement preferable over an “if” statement?
What is the purpose of & in scanf?
How would you rename a function in C?
What is static function in c?
What do you know about the use of bit field?
What is a lvalue
what is a function method?give example?
What is sizeof array in c?
Explain what is the concatenation operator?
What is an array in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above