summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-02-06 20:00:30 -0500
committerpommicket <pommicket@gmail.com>2022-02-06 20:00:30 -0500
commitbbd9eb17e0bc2bdf3ade20523fd9a1abe87a4cdc (patch)
treeabb8dab373009a6fc71bd36a64de4f049cbbf268 /05/main.c
parentb404c21bfc5b8d7d2317da89577633c778233ec4 (diff)
using function names
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/05/main.c b/05/main.c
index 37b2279..57eba24 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,12 +1,19 @@
-static int g;
+/* static int g; */
-int f(int x, int y[3]) {
- int z = 17 +x;
- int g[]={1,2,3,4,5};
- int h;
- return *(g + x + z);
+int main() {
+ int a = exit;
+ int b[] = {1,2,3};
+ exit(1);
}
+/* int f(int x, int y[3]) { */
+/* int z = 17 +x; */
+/* int g[]={1,2,3,4,5}; */
+/* int h; */
+/* funciton(h,g,z); */
+/* return *(g + x + z); */
+/* } */
+
/* typedef int AA[sizeof x]; */