Problème de compilation et d'execution en C
Fermé
P0mmeuh
Messages postés
5
Date d'inscription
dimanche 30 septembre 2012
Statut
Membre
Dernière intervention
12 mars 2013
-
30 sept. 2012 à 15:07
Char Snipeur Messages postés 9813 Date d'inscription vendredi 23 avril 2004 Statut Contributeur Dernière intervention 3 octobre 2023 - 5 oct. 2012 à 19:17
Char Snipeur Messages postés 9813 Date d'inscription vendredi 23 avril 2004 Statut Contributeur Dernière intervention 3 octobre 2023 - 5 oct. 2012 à 19:17
A voir également:
- 'Gcc' n'est pas reconnu en tant que commande interne ou externe, un programme ex�cutable ou un fichier de commandes.
- Erreur d'execution 1004 ✓ - Forum VB / VBA
- MACRO : Problème " Erreur d'exécution '1004' " ✓ - Forum Excel
- Processus d'execution client serveur - Forum Windows 10
- Erreur d'exécution 1004 ✓ - Forum Excel
- Le service sans fil windows n'est pas en cours d'exécution sur cet ordinateur - Forum WiFi
7 réponses
bernard.mouille
Messages postés
12
Date d'inscription
lundi 13 novembre 2006
Statut
Membre
Dernière intervention
26 janvier 2013
5
2 oct. 2012 à 18:24
2 oct. 2012 à 18:24
Bonjour POmmeuh,
Met ces 2 fichiers dans un dossier.
Fichier bat de compilation :
---------
@del hello.exe
@set path=%PATH%;c:\mingw\bin
c:\mingw\bin\g++ hello.cpp -o hello.exe
@dir hello.exe
@pause
---------
Fichier hello.cpp C
--------------------
#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
char quit;
quit = '\0';
while (quit != 'q')
{
cout << "Hello ! This is a console app." << endl;
cout << "To create a console, go to Project Options and select" << endl;
cout << "\'Win32 Console\'." << endl;
cout << "Press q to quit " << endl;
cin >> quit;
}
return 0;
}
Bernard
Met ces 2 fichiers dans un dossier.
Fichier bat de compilation :
---------
@del hello.exe
@set path=%PATH%;c:\mingw\bin
c:\mingw\bin\g++ hello.cpp -o hello.exe
@dir hello.exe
@pause
---------
Fichier hello.cpp C
--------------------
#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
char quit;
quit = '\0';
while (quit != 'q')
{
cout << "Hello ! This is a console app." << endl;
cout << "To create a console, go to Project Options and select" << endl;
cout << "\'Win32 Console\'." << endl;
cout << "Press q to quit " << endl;
cin >> quit;
}
return 0;
}
Bernard