Consoleapplication1.exe -
Leaving it as "ConsoleApplication1" makes it hard to find later. Use Project > Rename to give it a descriptive name like "AddressSorter" or "Calculator".
Check the Error List window in Visual Studio. Fix all "Red X" errors and then click Build > Build Solution before trying to run again. The Console Window Disappears Immediately ConsoleApplication1.exe
This usually means your code failed to compile. If there are build errors, the .exe file is never created, so the debugger has nothing to run. Leaving it as "ConsoleApplication1" makes it hard to
Are you seeing a when you try to run your application? exception in c++ - Microsoft Q&A Fix all "Red X" errors and then click
If your program needs to write to specific system folders or create Event Logs, you may need to run Visual Studio as an Administrator.
Add Console.ReadLine(); (C#) or system("pause"); (C++) at the very end of your Main method to wait for user input before closing. System Cannot Find the Path Specified