Last active
January 27, 2018 11:33
-
-
Save fortheday/8a3377f63d8fc77b57fe62f6031e131d to your computer and use it in GitHub Desktop.
This file contains 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
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