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
- Host: GitHub
- URL: https://github.com/mikixit/hello-world-c
- Owner: MikixIT
- Created: 2023-09-29T13:55:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T14:03:26.000Z (about 2 years ago)
- Last Synced: 2025-01-22T11:19:27.733Z (11 months ago)
- Topics: basic-programming, c, hello-world
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```