Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/reenphygeorge/intro-to-c


https://github.com/reenphygeorge/intro-to-c

Last synced: 7 days ago
JSON representation

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 :)