void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / veeraselvi.g
ans:12
explan:i++ means increment for 6 bt print will be 5;
other i++ for 6 to increment for 7
so ans is 12
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is main return c?
Can the sizeof operator be used to tell the size of an array passed to a function?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain how many levels deep can include files be nested?
What is the process to create increment and decrement stamen in c?
Explain what are its uses in c programming?
What is variable in c example?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What are the types of operators in c?
How do I get a null pointer in my programs?
Is printf a keyword?
List some of the static data structures in C?
What is the use of in c?
Why we use void main in c?
What is the difference between array and structure in c?