mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-11 16:00:52 +00:00
8 lines
141 B
C
8 lines
141 B
C
#include "common.h"
|
|
|
|
int main(void) {
|
|
double x = 5.0;
|
|
printf("J0(%g) = %.18e\n", x, gsl_sf_bessel_J0(x));
|
|
return EXIT_SUCCESS;
|
|
}
|