long factorial (long x)
{
????
return x * factorial(x - 1);
}
a) if (x == 0) return 0;
b) return 1;
c) if (x >= 2) return 2;
d) if (x == 0) return 1;
e) if (x <= 1) return 1;
Learn C programming skills, test your c skill. C Interview questions.
No comments:
Post a Comment