Besoin d'aide !!!!!!! [VC++] - C++ - Programmation
Marsh Posté le 27-10-2001 à 20:07:03
pour ton exemple, t'as pas besoin de stdafx,
inclus juste le iostream
et ds les settings du projet, met not using precompiled header...
Marsh Posté le 27-10-2001 à 20:34:11
Ben j'ai tjrs pas l'impression que mon piti prog se lance !
Une fenetre DOS s'ouvre et se referme et j'ai ça comme msg :
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINXP\system32\kernel32.dll', no matching symbolic information found.
The thread 0x564 has exited with code 0 (0x0).
The program 'C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\VB98\yep1\Debug\yep1.exe' has exited with code 0 (0x0).
Alors que je devrais avoir - 0 errors(s), 0 warning(s)!!!
Marsh Posté le 27-10-2001 à 20:53:00
ben si il se lance. seulement tu n'as pas le temps de voir gd chose ... rajoute un getch() avant ton return 0; ou lance ton programme à partir de la console (run > command, trouve le path et éxécute-le).
Marsh Posté le 27-10-2001 à 20:55:23
bon ton projet, c'etait bien un console ?
ensuite les
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINXP\system32\kernel32.dll', no matching symbolic information found.
The thread 0x564 has exited with code 0 (0x0).
The program 'C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\VB98\yep1\Debug\yep1.exe' has exited with code 0 (0x0).
tu t'en fous.
pour finir cout<<"Hello world"<<endl;
Marsh Posté le 27-10-2001 à 20:56:27
en principe, pas besoin de getch() si tu execute ton prog à partir de l'ide...
Marsh Posté le 27-10-2001 à 17:46:58
Je débute avec VC++ et j'arrive meme pas à lancer un programme tout con :
mon code :
// test n°1.cpp : Test des commandes
#include <StdAfx.h>
main ()
{
cout << "Hello tout le monde\n" ;
retrun (0);
}
et voilà ce que ça me donne :
--------------------Configuration: test n°1 - Win32 Debug--------------------
Compiling...
test n°1.cpp
c:\hello\test n°1\test n°1.cpp(3) : fatal error C1083: Cannot open include file: 'StdAfx.h': No such file or directory
Error executing cl.exe.
test n°1.exe - 1 error(s), 0 warning(s)
Pourtant, y a bien un fichier StdAfx.h !
Et ememe si je met <isostream.h> ça me fait la meme !
HELP