aboutsummaryrefslogtreecommitdiff
path: root/problems/starshiplaunchcodes/attachments/template.c
diff options
context:
space:
mode:
Diffstat (limited to 'problems/starshiplaunchcodes/attachments/template.c')
-rw-r--r--problems/starshiplaunchcodes/attachments/template.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/problems/starshiplaunchcodes/attachments/template.c b/problems/starshiplaunchcodes/attachments/template.c
new file mode 100644
index 0000000..228b009
--- /dev/null
+++ b/problems/starshiplaunchcodes/attachments/template.c
@@ -0,0 +1,17 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdbool.h>
+
+int main()
+{
+ int S;
+ scanf("%d", &S);
+
+ // Write an answer using printf(). DON'T FORGET THE TRAILING \n
+ // To debug: fprintf(stderr, "Debug messages...\n");
+
+ printf("code(s)\n");
+
+ return 0;
+}