diff --git a/C/YT-BroCode/HelloWorld/helloworld b/C/YT-BroCode/HelloWorld/helloworld new file mode 100755 index 0000000..a371da7 Binary files /dev/null and b/C/YT-BroCode/HelloWorld/helloworld differ diff --git a/C/YT-BroCode/HelloWorld/helloworld.c b/C/YT-BroCode/HelloWorld/helloworld.c new file mode 100644 index 0000000..589c010 --- /dev/null +++ b/C/YT-BroCode/HelloWorld/helloworld.c @@ -0,0 +1,9 @@ +#include + +int main () { + + printf("Hello World!\nFrom the C Programming Language\n"); + + return 0; + +}