mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 12:44:45 +00:00
18 lines
173 B
C
18 lines
173 B
C
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
|
|
int xToI ( );
|
|
|
|
void main ( void )
|
|
{
|
|
printf ( "the answer is %d\n", xToI () );
|
|
}
|
|
|
|
|
|
int xToI()
|
|
{
|
|
return (int)floor(2.90) + 1;
|
|
}
|
|
|