c_piscine__offshore_mains/c00/ex00.c

34 lines
1.1 KiB
C
Raw Permalink Normal View History

2023-11-21 19:10:07 +00:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* c00_ex00.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 19:43:15 by achubuko #+# #+# */
2023-11-22 21:34:57 +00:00
/* Updated: 2023/11/23 01:00:45 by achubuko ### ########.fr */
2023-11-21 19:10:07 +00:00
/* */
/* ************************************************************************** */
2023-11-22 21:34:57 +00:00
#include <stdio.h>
2023-11-21 19:10:07 +00:00
void ft_putchar(char c);
int main()
{
2023-11-22 21:34:57 +00:00
printf("Hello\n");
ft_putchar('H');
ft_putchar('e');
ft_putchar('l');
ft_putchar('l');
ft_putchar('o');
ft_putchar('\n');
2023-11-21 19:10:07 +00:00
}
void setUp(void)
{
}
void tearDown(void)
{
}