0
I installed Visual Studio C++ 2010 Express. I created a project using Win32 Console Application, added a New Iten C++ File(.cpp) to this project, but at the time of running the error appears:
1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I’ve done it but it’s not spinning,
– Sarah
earlier appeared the error q I put in the question now that I did this does not appear the error, but also does not rotate, the screen of the console appears and disappears fast
– Sarah
is showing this: The program '[736] Aula1.exe: Native' has exited with code 0 (0x0).
– Sarah
is my first program in c++, I want q to write "hello word"
– Sarah
#include <stdio. h> int main(int argc, char **argv) ː printf("Hello Word"); Return 0; }
– Sarah
it looks like this: #include <stdio. h> int main(int argc, char **argv) ː printf("Hello Word"); int hold; Cin >> wait; Return 0; }
– Sarah
but it appears this: The program '[3924] Aula1.exe: Native' has exited with code 0 (0x0).
– Sarah
I did this: #include <stdio. h> main() { char user[10]; printf("Enter user name: "); scanf("%s", &user); }
– Sarah
and shows this: 'Aula1.exe': Loaded’D: Users Sara Documents Visual Studio 2010 Projects Aula1 Debug Aula1.exe', Symbols Loaded. 'Aula1.exe': Loaded 'C: Windows System32 ntdll.dll', Cannot find or open the PDB file 'Aula1.exe': Loaded 'C: Windows System32 kernel32.dll', Cannot find or open the PDB file 'Aula1.exe': Loaded 'C: Windows System32 Kernelbase.dll', Cannot find or open the PDB file 'Aula1.exe': Loaded 'C: Windows System32 msvcr100d.dll', Symbols Loaded. The program '[1548] Aula1.exe: Native' has exited with code 0 (0x0).
– Sarah
You can add a breakpoint before Return 0... when starting debug it should stop there...
– Rodrigo Guiotti