misterpart / Hacktoberfest-1

Hacktoberfest Allen Texas Census. Easy to Do! . https://AllenCompSci.github.io/Hacktoberfest [CENSUS] https://allencompsci.github.io/Hacktoberfest/Preview [SIGN-IN]
MIT License
0 stars 1 forks source link

Update LICENSE #3

Open tiagokapp opened 7 years ago

tiagokapp commented 7 years ago

int fatorial (int n);

main(){

int resp, val;
val=200;
resp=fatorial(val);

return 0;

}

int fatorial (int n){

if (n==0){

    return 1;
}
return n*fatorial (n-1);

}