summaryrefslogtreecommitdiff
path: root/void_tutorial.c
diff options
context:
space:
mode:
Diffstat (limited to 'void_tutorial.c')
-rw-r--r--void_tutorial.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/void_tutorial.c b/void_tutorial.c
new file mode 100644
index 0000000..bef3396
--- /dev/null
+++ b/void_tutorial.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+
+int main(void)
+{
+
+ char a = 3;
+
+ char* b = a * 7;
+
+ printf("%d\n",b);
+
+ return 0;
+}