Advertisement
tresonance

ft_div_mod.c

Feb 14th, 2016
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.08 KB | None | 0 0
  1. void ft_div_mod (int a, int b, *div, *mod)
  2. {
  3.     *div = (a / b);
  4.     *mod = (a % b);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement