Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reenphygeorge/intro-to-c
https://github.com/reenphygeorge/intro-to-c
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/reenphygeorge/intro-to-c
- Owner: reenphygeorge
- Created: 2022-07-28T13:00:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-06T16:54:04.000Z (over 2 years ago)
- Last Synced: 2024-10-11T00:13:40.112Z (29 days ago)
- Language: C
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro To C 🧑🏽💻
### What is programming?
* Programming is to instruct the computer, this basically means that you provide the computer a set of instructions that are written in a language that the computer can understand.
* C is a general-purpose programming language, developed in 1972, and still quite popular.
### Let's get started 🚀
#include
int main()
{
// Your Code //
return 0;
}
###### Happy Coding :)