diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..6ec388a --- /dev/null +++ b/helloworld.c @@ -0,0 +1,7 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} \ No newline at end of file