This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//basic passing by reference example using vectors (using &) | |
//more info | |
//https://www.geeksforgeeks.org/passing-by-pointer-vs-passing-by-reference-in-c/ | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
void temp( vector<string> * temp); |