C++
Résolu/Fermé3 réponses
Nabla's
Messages postés
18203
Date d'inscription
mercredi 4 juin 2008
Statut
Contributeur
Dernière intervention
28 avril 2014
3 193
20 sept. 2010 à 15:47
20 sept. 2010 à 15:47
Ca dépend du type de la variable tc....
printf("%s\n",tc);
pour un string....
%d si c'est un entier ou un double
%c je pense pour un caractère ....
%f pour un float
printf("%s\n",tc);
pour un string....
%d si c'est un entier ou un double
%c je pense pour un caractère ....
%f pour un float
mamiemando
Messages postés
33333
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
31 octobre 2024
7 800
Modifié par mamiemando le 20/09/2010 à 19:51
Modifié par mamiemando le 20/09/2010 à 19:51
Au passage en C++, on utiliserait plutôt std::endl que '\n'.
Pour finir de préciser la réponse déjà très complète de Nabla's, lorsque tu cherches comment marche une fonction en C, mettons printf, tu peux chercher dans google (ou dans un terminal linux) "man printf".
http://www.linux-kheops.com/doc/man/manfr/man-html-0.9/man3/sprintf.3.html
Bonne chance
std::cout << "pouet" << std::endl;
Pour finir de préciser la réponse déjà très complète de Nabla's, lorsque tu cherches comment marche une fonction en C, mettons printf, tu peux chercher dans google (ou dans un terminal linux) "man printf".
http://www.linux-kheops.com/doc/man/manfr/man-html-0.9/man3/sprintf.3.html
Bonne chance
20 sept. 2010 à 16:00