0
how do I display the runtime of my code? I'm using bloodshed dev cpp. Is it automatic on some other compilers?
2 Answers
0
netbeans : ctrl + f5 to debug, it provides visual debugger. debugging window help to locate source code. like to check run time value of the variable.
0
you could even implement a runtime checker in c++ using the chrono standard template library. just google it and you'll find plenty of examples.