main.cpp
// Online C++ compiler to run C++ program online #include <iostream> void test(int *val) { std::cout << val; } int main() { // Write C++ code here std::cout << "Start small. Ship something."; int v = 5; test(v); return 0; }
Output