What will be the output of the following code snippet?
main()
{
int num=1;
clrscr();
for(j=1;j<=6;j++)
{
for(i=j;i>=1;i--)
{
for(k=1;k<=i;k++)
num*=k;
}
}
printf(The num is: %d,num);
getch();
}
Reveal answer
Fill a bubble to check yourself