#include <unistd.h> void ft_print_numbers(void) { char c; c = '0'; while (c <= '9') { write(1, &c, 1); c++; } } int main(void) { ft_print_numbers(); return (0); }
To embed this project on your website, copy the following code and paste it into your website's HTML: