void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / guest
the condition is like i++ + ++i
so 5 + 6 =11
| Is This Answer Correct ? | 10 Yes | 25 No |
Post New Answer View All Answers
Was 2000 a leap year?
How do you override a defined macro?
What is array in C
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Can I initialize unions?
What is a nested loop?
Is it cc or c in a letter?
How is a null pointer different from a dangling pointer?
Why c is a procedural language?
What are linked lists in c?
In a switch statement, explain what will happen if a break statement is omitted?
What is structure and union in c?
Is c still relevant?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is %d used for?