-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain04.c
26 lines (23 loc) · 1.06 KB
/
main04.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: imorimot <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/07/05 20:48:13 by imorimot #+# #+# */
/* Updated: 2018/07/05 23:42:46 by imorimot ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "ft_ultimate_div_mod.c"
int main(void)
{
int a;
int b;
a = 7;
b = 2;
ft_ultimate_div_mod(&a, &b);
printf("div(a) = %d, mod(b) = %d", a, b);
return (0);
}