Last active
November 18, 2016 17:24
-
-
Save abdalimran/474604042a89cfc2b03f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Bismillah hir rahmanir raheem. Thanks to Allah for everything. | |
Coder: Abdullah Al Imran | |
Email: [email protected] */ | |
#include<bits/stdc++.h> | |
using namespace std; | |
long factorial(int n) | |
{ | |
if(n==0) | |
return 1; | |
else | |
return(n*factorial(n-1)); | |
} | |
long npr(int n,int r) | |
{ | |
long value; | |
value=factorial(n)/factorial(n-r); | |
return value; | |
} | |
int main() | |
{ | |
ios_base::sync_with_stdio(false); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment