commit bb7941d779e834b782e09441befcd510f3c69e0c Author: Francisco Ferreira Date: Thu Sep 17 09:18:16 2026 -0600 c example diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..0eb9913 --- /dev/null +++ b/Readme.md @@ -0,0 +1,6 @@ +# Introduction +How to compile + +```bash +gcc main.c -o hello +.\hello diff --git a/hello b/hello new file mode 100755 index 0000000..a2bbc7f Binary files /dev/null and b/hello differ diff --git a/main.c b/main.c new file mode 100644 index 0000000..9198646 --- /dev/null +++ b/main.c @@ -0,0 +1,6 @@ +#include + +int main(void){ + printf("Hiii hello\n"); + return 0; +}