The closest thing I can make to your example would be:

int *list[2];
int a = 2, b = 3;

*list = &a;
*(list + 1) = &b;
Notice that I had to declare an array of 2 elements.