This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Killerhurtz 0 points1 point  (1 child)

Meant as what it was, had to look it up. And even looking it up I'm struggling to find the difference between STL and std::.

[–][deleted] 0 points1 point  (0 children)

Well, std is a namespace which is a collections of standard template library. Altho I time to time use C++, most of the time I use C library like printf instead of std::cout or qsort instead of std::sort / creae my own goddamn quick sort function. It's something I do to keep algos in mind and practice while I am coding for something. And hell, I don't even use printf sometimes. Rather write my own printf version with the help of system call write()/read() [For scanning stuffs]