how to pprint otu a double in in c

#include <stdio.h>

int main() {
    double number = 3.14159;
    printf("%lf", number);

    return 0;
}