Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Unqualified free functions
//clang 3.8.0 #include <iostream> #include <vector> #include <algorithm> std::vector<int> v = {1, 2, 3}; int main() { bool b = end(v) != std::find(begin(v), end(v), 2); std::cout << b; }
run
|
edit
|
history
|
help
0
HerbSutter-Virtuality
Расстановка восьми ферзей на шахматной доске так, чтобы ни один не угрожал другому - C++
Copy uint64 data into uint32 with padding
problem_name_4
Throttle Example in C++ (80 requests every 2 seconds)
Range List for C++
What's the problem with this?
Pure virtual function called!
user defined exception
Array-Based Heap Example Solution