RE: [HC Official] T0rn - Hash Cracker V.2 05-26-2014, 01:08 AM
#26
(05-25-2014, 07:03 PM)Ex094 Wrote:(05-25-2014, 06:50 PM)minial90000 Wrote: Its a very nice tool and thank you for sharing but why did you keep using std:: when you could simply add using namespace std; ? Im not saying you should but I was wondering if there was a reason you did it like you did.
Using std:: is considered to be a good practice.
1st Reason is that I've never used using namespace std; much so my practice had always involved using std:: so em kinda stuck with it![]()
2nd Reason, It prevents conflict between 2 libraries, have a look at here http://stackoverflow.com/questions/14527...d-practice
Regards
Thank you this was helpful!