Julian Seward 72a784f3b1 Initial revision
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2
2002-03-22 01:27:54 +00:00

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;
}