What will be the output of the following C code? void main() { int fact=1,i; clrscr(); for(i=2;i<=8;i++) fact=fact*i; printf(%d,fact); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following C code? void main() { int fact=1,i; clrscr(); for(i=2;i<=8;i++) fact=fact*i; printf(%d,fact); }