Question

I am trying to write a batch file so it executes a program I did with different arguments. One of those arguments is often the number PI.

How can I get the number Pi?

Thanks!

Was it helpful?

Solution

I assume with "batch file" you mean a Windows batch file.

There is no pre-defined constant for PI, so you need to hardcode that into the batchfile:

set PI=3.14159
yourProgram.exe %PI%
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top