[Visual C++ Express]Erreur d'execution: Aucun symbole chargé
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:
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:
Citation:
'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
++