From 102341d7ae8793c29d44fa416d3b5b797d1eca3e Mon Sep 17 00:00:00 2001 From: Clay Smith Date: Tue, 1 Aug 2023 01:09:09 -0500 Subject: First commit --- understanding_scope.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 understanding_scope.c (limited to 'understanding_scope.c') diff --git a/understanding_scope.c b/understanding_scope.c new file mode 100644 index 0000000..88f4f38 --- /dev/null +++ b/understanding_scope.c @@ -0,0 +1,14 @@ +#include //printf + +#include "tutorial6.h" +int a = 7; + + + +int main(void) +{ + + func1(); + + return 0; +} -- cgit v1.2.1