Skip to content

Instantly share code, notes, and snippets.

@fortheday
Last active January 27, 2018 11:33
Show Gist options
  • Save fortheday/8a3377f63d8fc77b57fe62f6031e131d to your computer and use it in GitHub Desktop.
Save fortheday/8a3377f63d8fc77b57fe62f6031e131d to your computer and use it in GitHub Desktop.
using namespace std;
void procArray(int intArr[])
{
}
void TestMain()
{
int intArr[] = { 1, 2, 3 };
procArray(intArr);
int *pInt = intArr + 0;
auto &coutType = (std::cout << pInt[0] << pInt[1] << pInt[2]);
coutType << "@" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment