picoc/tests/07_function.c
zik.saleeba b9990d2c39 Functions returning void fixed
git-svn-id: http://picoc.googlecode.com/svn/trunk@176 21eae674-98b7-11dd-bd71-f92a316d2d60
2009-03-09 00:43:31 +00:00

16 lines
146 B
C

int myfunc(int x)
{
return x * x;
}
printint(myfunc(3));
printint(myfunc(4));
void vfunc(int a)
{
printf("a=%d\n", a);
}
vfunc(1234);