picoc/tests/07_function.c
zik.saleeba 65db9a490a Added tests for functions, while and do..while
git-svn-id: http://picoc.googlecode.com/svn/trunk@88 21eae674-98b7-11dd-bd71-f92a316d2d60
2009-02-19 11:00:51 +00:00

9 lines
84 B
C

int myfunc(int x)
{
return x * x;
}
printint(myfunc(3));
printint(myfunc(4));