Initial commit.
[sixpic.git] / tests / test3.c
blob994b0e56735d12576874707cc2aa5acca708e96f
1 /* File: test3.c */
3 /* Test function calls with arguments and while loops */
5 void f(int x, int n)
7 while (n > 0)
9 x = x+n;
10 n = n-1;
14 f(0, 6);