1 2 3 4 5 6 7 8 9 10 11 12 13
#include <unistd.h> void ft_putnbr(int nb){ write(1, &nb, 4); } int main() { ft_putnbr(2147); return (0); }