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