Factor of a number
CodeChefOpen on judge ↗
Factor of a number Write a C program to find the Factorial of a number Factorial is sequence of a number whose multiply by all previous number. Ex:- No is 5. 5x4x3x2x1=120 Factorial of a 5=120 copy and paste the below code in editor #include int main() { int i, number, fact = 1; scan("%d", &number); for (i = 1; i<= number;i+) fact = fact * i prinf("%d \t", fat); r
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start