An open API service indexing awesome lists of open source software.

https://github.com/mikixit/hello-world-c

I start practicing on c, to strengthen the basics
https://github.com/mikixit/hello-world-c

basic-programming c hello-world

Last synced: 4 months ago
JSON representation

I start practicing on c, to strengthen the basics

Awesome Lists containing this project

README

          

#my first hello-world-c

# I start practicing on c, to strengthen the basics

```c
//
// main.c
// first-c-software
//
// Created by Michael Torres on 29/09/23.
//

#include

int main(int argc, const char * argv[]) {
printf("Hello, World by MikixIT in C!\n");
return 0;
}
```