pi in c language

#include <stdio.h>

int main() {
    float pi = 3.14159;
    printf("The value of pi is: %f", pi);
    return 0;
}