7 lines
98 B
C
7 lines
98 B
C
#include <stdio.h>
|
|
void ft_putstr(char *str);
|
|
int main(void)
|
|
{
|
|
ft_putstr("hello world!\0no!");
|
|
}
|