summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ch.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ch.c b/test/ch.c
new file mode 100644
index 0000000..0dfedad
--- /dev/null
+++ b/test/ch.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main()
+{
+ char data[] = "abcdefg";
+
+ *data = *data + 1;
+
+ printf("%s\n", data);
+} \ No newline at end of file