Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
#define PI 3.14159265359
2
3
main(){
4
// Ausgabe der mathematischen Konstante "pi" auf 3
5
// Nachkommastellen
6
printf("%1.3f\n", PI);
7
}
8
9