on ne uppe pas après 5mn!
Sinon tu peux commencer par apprendre le C++... tu trouveras des infos en cherchant ´C++´ dans le forum...
Sinon:
Le C++ ets un langage de Programmation Orientée Objet ( POO)
Un hello World en C++:
- include < iostream>
int main()
{
std::cout < < " Hello World" < < endl;
getchar();
return 0;
}
En mettant ce code dans un fichier *.cpp ou *.c et en le compilant, tu auras un executable qui affichera " hello world"
magique, hein?
Un compilateur c´est un prog qui ´convertit´ ton fichier C++ en *.exe, qui est écrit en assembleur ( asm)...
Tu peux télécharger Dev-Cpp, gratuit, en français, sur http://Www.telecharger.com
voilà j´espère que je t´ai éclairé, sinon tu peux aller voir sur l´excellente pas d´une certaine pintade...
http://perso.wanadoo.fr/ck/Langages.htm
Bye!
Morpheus