Question
int f=1, i=2;
while(++i<5)
f*=i;
cout<<f;
What is the output of given code fragment?
int f=1, i=2;
while(++i<5)
f*=i;
cout<<f;
Answer: Option A
Submit Your Solution Below and Earn Points !
Submit Your Solution Below and Earn Points !
Submit Solution