mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
7 lines
143 B
C
7 lines
143 B
C
#define PI 3.14159265359
|
|
|
|
main(){
|
|
// Ausgabe der mathematischen Konstante "pi" auf 3
|
|
// Nachkommastellen
|
|
printf("%1.3f\n", PI);
|
|
}
|