Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. inline int inline_gcd(int a, int b) {
  2. if (b == 0)
  3. return a;
  4. else
  5. return inline_gcd(b, a % b);
  6. }
  7.  
  8.  
  9. int main(int argc, char** argv) {
  10.  
  11. inline_gcd(10, 3);
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement