small gcc introduction

This commit is contained in:
2022-01-01 21:37:36 +01:00
parent 010f67b881
commit 8cbf6437f5
5 changed files with 168 additions and 0 deletions

6
GCC Intro/hello.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}