summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/05/main.c b/05/main.c
index 17e4404..3d7b1ae 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,9 +1,15 @@
/* static int g; */
+int f(int a, float x[], double y, ...) {
+}
+
+float * g() {
+}
+
int main() {
- int a = exit;
int b[] = {1,2,3};
- exit(1, 17, a+b);
+ int a = f(1, 17, b, 36, 55.0, 22.3f);
+ float *f = g(17.2, b);
}
/* int f(int x, int y[3]) { */