aboutsummaryrefslogtreecommitdiff
path: root/f.c
diff options
context:
space:
mode:
Diffstat (limited to 'f.c')
-rw-r--r--f.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/f.c b/f.c
new file mode 100644
index 00000000..cdea8b36
--- /dev/null
+++ b/f.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <string.h>
+
+int
+main(void) {
+ printf("strlen(\"\"): %d\n", strlen(""));
+ printf("sizeof(int): %ld\n", sizeof(int));
+ printf("sizeof(int *): %ld\n", sizeof(int *));
+ return 0;
+}