아래의 소스는 Coefficients for the Lanczos Approximation to the Gamma Function 의 것을 Microsoft Visual C/C++ 명령줄 컴파일러 cl 로 컴파일되도록 수정한 것이다. // Filename: test_gamma_lanczos.c // // Compile: cl test_gamma_lanczos.c /EHsc /utf-8 // Execute: test_gamma_lanczos #include #define _USE_MATH_DEFINES // for C #include #define LG_g 5.0 // Lanczos parameter "g" #define LG_N 6 // Range of coefficients i=[0..N] const ..