mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
13 lines
145 B
C
13 lines
145 B
C
#include <stdio.h>
|
|
|
|
int main (int argc, char ** argv)
|
|
{
|
|
float det = 625.f;
|
|
|
|
if (det < 1)
|
|
{
|
|
printf ("erm, what ?\n");
|
|
}
|
|
return 0;
|
|
}
|