Langage C++

C si différent?

Comparons le premier programme que nous avons réalisé en C avec sa correspondance en C++:

En langage C
#include <stdio.h>

void main (void)
{
printf ("Bonjour");
}
En langage C++
#include <iostream.h>

void main (void)
{
cout <<"Bonjour";
}

L'emploi d'une couleur ne sert ici qu'à la mise en évidance des différences de syntaxe entre les deux programmes.

Le résultat est le même pour les deux programmes:

Bonjour
C:\>

Contents Haut

Rappel

Dans l'instruction #include <iostream.h>, les signes <> permettent de signaler au précompilateur (par le cardinal #) que les instructions à lire se trouvent à l'emplacement par défaut (spécifié dans le compilateur).

Nous pourions rencontrer l'instruction #include <iostream>, sans l'extension .h, ce qui oblige à faire précéder l'instruction par son namespace.
Exemple :

Avec l'extension
#include <iostream.h>

void main (void)
{
cout << "Bonjour";
}
Sans l'extension

#include <iostream>

void main (void)
{
std::cout << "Bonjour";
}

#include <iostream>
using namespace std;

void main (void)
{
cout << "Bonjour";
}

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 24/12/2002, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cp-intro.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.