Multiple choice The following program prints main() { int i = 5; i = (++i) / (i ++); printf(“%d”,i); } 2 5 1 6 Reveal answer Fill a bubble to check yourself A Correct answer