Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <cstdio>
void foo(int v1, int v2, int v3, int v4)
{
printf("%d %d %d %d\n",v1,v2,v3,v4);
}
int main()
{
int lut[] = { 1, 2, 3, 4 };
int idx = 0;
foo(lut[idx++],lut[idx++],lut[idx++],lut[idx++]);
return 0;
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content