This repl is an implementation of an algorithm to convert an infix expression into a postfix array in C++.
To view this on TripleLog, click here.
There is just the one main.cpp that runs the algorithm. You can edit it to accept user input or whatever. You probably want the output to be nicer or do something.
Compile the file by running g++ -o main main.cpp in the shell.
Then run the file by running ./main in the shell.