Hello world!
- Michael Felix

- Dec 12, 2018
- 1 min read
In today's post, I'm gonna show you how to set up your computer to start coding in C! We'll be using Windows Operating System and DevC++ as our ID
C is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system. C is the most widely used computer language. It keeps fluctuating at number one scale of popularity along with
Goal: to print "Hello world!"
1. You need to download DevC++ from this link.
2. After you done installing, open DevC++ from you desktop shortcut.
3. Now, create a new file and type:
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}4. Now you're done!
Comments