C deRecursive bir fonksiyon ile faktöriyel hesaplatmak #include <stdio.h> int fac(x); int main(){ printf(“%d”, fac(4)); } int fac(x){ if(x==1){ return x; } return x *…
Türk Yazılımlarının Gücü
C deRecursive bir fonksiyon ile faktöriyel hesaplatmak #include <stdio.h> int fac(x); int main(){ printf(“%d”, fac(4)); } int fac(x){ if(x==1){ return x; } return x *…