hackingcpp / comments

Comments regarding hackingcpp.com
0 stars 0 forks source link

cpp/std/algorithms/intro #37

Open utterances-bot opened 9 months ago

utterances-bot commented 9 months ago

C++ Standard Library Algorithms Introduction | hacking C++

Introduction, examples and visual explanations of the basic principles behind C++ standard library algorithms.

https://hackingcpp.com/cpp/std/algorithms/intro.html

sunshaoce commented 9 months ago

std::cout << *j <<'\n'; // prints '0' should be std::cout << *j <<'\n'; // prints '1'

hackingcpp commented 9 months ago

@sunshaoce Thanks for spotting this!