Computer Science, asked by sukhvindersingh7870, 3 months ago

#include int main() { int n = -7; int i; int a = 1; if (n<0) printf("Error!"); else { for (i = 1; i <= n; ++i) { a *= i; } printf("%d", a); } return 0; }

Answers

Answered by amandeep9498
4

Answer:

just a little note about how I feel like this happens

Similar questions