online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> //provide an ordinary function to end recursion void print () { } template<typename T, typename... Types> void print (T firstArg, Types... args) { std::cout << firstArg << "\n"; // printing the first argument print(args...); // printing the rest of the argument by calling print() } int main() { print(1, 2, 3, "some string literal"); return 0; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue