top of page
Blog: Blog2

Hello world!

  • Writer: Michael Felix
    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!


 
 
 

Recent Posts

See All
IF CONDITON

An if structure is formed from an if statement and is often used to select a single condition. If the selected process is fulfilled or...

 
 
 
Struct

Struct is a formed data type that contains a collection of variables that are in the same name and are related to one another. In...

 
 
 
POINTER

A pointer is a variable that points to another variable memory address. A pointer does not contain a data value as well as an ordinary...

 
 
 

Comments


  • instagram
  • generic-social-link

©2018 by systemnotfound. Proudly created with Wix.com

bottom of page