Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
variadic template
//g++ 5.4.0 #include <iostream> using namespace std; void f() { cout << std::endl; } template<typename T, typename... Tail> void f(T header, Tail... tail) { cout << header << ","; f(tail...); } int main() { f<int, int,int>(1,2,3); return 0; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
12535
Binary search2
Sorting sort function stl in c++
void sun()
PLoshtina na krug
articulation points and bridges
next greater palindrome
PATRA_Class_test
GRAPH DFS & BFS
articulation points (http://codeforces.com/contest/732/problem/F)
stackse - search stackoverflow differently
Please log in to post a comment.