21 lines
978 B
C
21 lines
978 B
C
|
# **************************************************************************** #
|
||
|
# #
|
||
|
# ::: :::::::: #
|
||
|
/* ft_ultimate_div_mod.c :+: :+: :+: */
|
||
|
# +:+ +:+ +:+ #
|
||
|
# By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ #
|
||
|
# +#+#+#+#+#+ +#+ #
|
||
|
# Created: 2022/07/14 18:58:45 by cchauvet #+# #+# #
|
||
|
/* Updated: 2022/07/14 19:03:57 by cchauvet ### ########.fr */
|
||
|
# #
|
||
|
# **************************************************************************** #
|
||
|
|
||
|
void ft_ultimate_div_mod(int *a, int *b)
|
||
|
{
|
||
|
int c;
|
||
|
int d;
|
||
|
|
||
|
c = *a/*b;
|
||
|
d = *a%*b;
|
||
|
}
|