print boolean value in c

#include <stdio.h>
#include <stdbool.h>

int main() {
    bool value = true;
    printf("%s\n", value ? "true" : "false");
    return 0;
}