Print the number 0 using write()

#include <unistd.h>

int main() {
    char zero = '0';
    write(STDOUT_FILENO, &zero, 1);
    return 0;
}