summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
4bad520)
renamed: src/test -> exec/bin/test
--- /dev/null
+/* Desc: Prints hello world.
+ */
+
+#include <stdio.h>
+int main() {
+ int a = 10;
+ printf("Hello world! \n");
+ printf("The value of a : %d", a);
+ getchar(); // pause until user hits 'enter'
+ return 0;
+};
+
+/* Author: Steven Baltakatei Sandoval
+ * License: GPLv3+
+ */
--- /dev/null
+#include <stdio.h>
+int main() {
+ printf("Hello, World!");
+ return 0;
+}