Submitted by Mi-K on Thursday, April 5, 2012 - 1:53pm
We are going to see in this queue tutorial, how to use it.
Let's see it with this first snippet.
In the easy example below, we add 10 elements in the queue before displaying its content.
We have to notice that we cannot iterate through a queue.
Submitted by Mi-K on Thursday, March 8, 2012 - 2:09pm
This section will gather all errors found when you were coding in Eclipse.
It is really hard sometimes to find what is the problem when you get an exception.
Submitted by Mi-K on Thursday, March 8, 2012 - 12:42pm
In this tutorial we will how to easily manage errors in C programming language.
That is we will try to open a file and if this file doesn't exist we will trigger an error.
If the file exists, we will tell its name with a message to say that the file really exist.
Submitted by Mi-K on Wednesday, February 29, 2012 - 10:13am
As you already saw it, creating a list in OCaml is not so difficult.
But this time, we will see how to iterate through a list and display all elements inside.
We will create two arrays, one of ints, the other of strings.
Once done, we will display their elements.
Let's see it with this OCaml list tutorial.