26 lines
1 KiB
C
26 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/11 18:45:33 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/11 18:46:46 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
|
|
void ft_takes_place(int hour);
|
|
|
|
int main(void)
|
|
{
|
|
int i;
|
|
|
|
for (i=0; i<=24;i++)
|
|
{
|
|
printf("%i:", i);
|
|
ft_takes_place(i);
|
|
}
|
|
}
|