Oct 29, 2010

Find The Output

main()
{
i=5;
printf("%d",i++ + ++i);
printf("\n%d",i++);
printf("\n%d",++i);
}

Answer:
12
7
9