summaryrefslogtreecommitdiff
path: root/understanding_scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'understanding_scope.c')
-rw-r--r--understanding_scope.c14
1 files changed, 14 insertions, 0 deletions
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 <stdio.h> //printf
+
+#include "tutorial6.h"
+int a = 7;
+
+
+
+int main(void)
+{
+
+ func1();
+
+ return 0;
+}