-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest04.c
29 lines (26 loc) · 1.12 KB
/
test04.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
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: arosado- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/12 16:01:25 by arosado- #+# #+# */
/* Updated: 2021/09/12 16:01:28 by arosado- ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
void ft_ultimate_div_mod(int *div, int *mod);
int main(void)
{
int i1;
int i2;
int *div;
int *mod;
i1 = 25;
i2 = 7;
div = &i1;
mod = &i2;
ft_ultimate_div_mod(div, mod);
printf("Division: %u, Reminder: %u", *div, *mod);
}