I want to know haw to debugg c++ code in sublime for windows . i want to know for example aw compiletion going on and haw step by step programm is going on that is why need o know i have found haw to debug c++ code in vs code but could not found in sublime as we are writing in sublime could u send any good article or haw master that comcetp (debugging )
Haw to debugg c++ code in sublime for windows
follow this for setting up sublime - https://blog.codingblocks.com/2019/setting-up-a-c-competitive-programming-environment/
after this for compilation use ctrl+B,
Coming to debugging, it can be
- Debug so that code compiles - These errors will be shown in sublime, so you can easily rectify these.
- Code compiles properly but output not correct - This is kind of logical error, you must ensure and dry run your approach to handle such errors.