Bonjour,

je viens d'installer Visual C++ Express et apr�s avoir t�l�charg� et install� le platform SDK, j'ai voulu test� un programme tout con.

Code : S�lectionner tout - Visualiser dans une fen�tre � part
1
2
3
4
5
6
7
#include <iostream>
using namespace std;
 
int main() {
	cout <<"Hello World";
	cout <<"Bah alors ?";
}
Le programme est compil� sans erreur, mais pendant l'execution, le programme s'arr�te et l'erreur suivante appara�t:

'toto.exe' : Charg� 'C:\WINDOWS\system32\ntdll.dll', Aucun symbole n'a �t� charg�.
'toto.exe' : Charg� 'C:\WINDOWS\system32\kernel32.dll', Aucun symbole n'a �t� charg�.
'toto.exe' : Charg� 'C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c\msvcp80d.dll', Aucun symbole n'a �t� charg�.
'toto.exe' : Charg� 'C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c\msvcr80d.dll', Aucun symbole n'a �t� charg�.
'toto.exe' : Charg� 'C:\WINDOWS\system32\msvcrt.dll', Aucun symbole n'a �t� charg�.
Merci pour votre aide
++