1. Add a simple C program that prints "Hello, World!" to the console.
This commit is contained in:
6
C/hello_world/hello_world.c
Normal file
6
C/hello_world/hello_world.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello, World!\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user