Computer Science, asked by adimon, 1 year ago

basic concepts for finding factorial of a program using function in c language

Answers

Answered by realarpitrajan
1
eg factorial of 5=1*2*3*4*5
in the same way factorial of 10=1*2*3*4*5*6*7*8*9*10
Answered by ayushkumarmmishra24
0

The logic is

While(i<=n)

S=s×i;

i=i+1;

Similar questions