mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
17 lines
257 B
C
17 lines
257 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
// Refer https://bugs.kde.org/show_bug.cgi?id=350062
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
double x = 1.1;
|
|
double i = floor(x);
|
|
|
|
(void)i;
|
|
|
|
fprintf(stderr, "PASS\n");
|
|
return 0;
|
|
}
|