summaryrefslogtreecommitdiff
path: root/C/HF/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'C/HF/array.c')
-rw-r--r--C/HF/array.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/C/HF/array.c b/C/HF/array.c
new file mode 100644
index 0000000..8410be0
--- /dev/null
+++ b/C/HF/array.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main(void)
+{
+ char s[] = "Howdy horny!\n";
+ char *t = s;
+
+ puts((t + 6));
+ return 0;
+}