M7350/system/core/libacc/tests/data/floatdouble.c
2024-09-09 08:52:07 +00:00

10 lines
168 B
C

int main()
{
// Test coercing values when storing.
float a = 0.002;
double b = 0.1f;
int c = 10.002;
printf("%g %g %d\n", a, b, c);
return 0;
}