AMCAT Automata Fix Sample Question-1

Program 1

Factorial

You are required to fix and write the logical part for the function and that takes an integer ‘n’ as input and returns the factorial of ‘n’ with recursion.

#include <iostream>

unsigned long long factorial(int n) {
    if (n == 0) {
        return 1;
    } else {
} }

3 comments on “AMCAT Automata Fix Sample Question-1”