employer cover photo
employer logo
employer logo

FlexTrade Systems Inc.

Is this your company?

FlexTrade Systems Inc. Interview Question

how to declare a pointer to pointer and use it

Interview Answer

Anonymous

Dec 28, 2010

there are many ways. For example: int x = 10; int *p = &x; //pointer to x int **y = &p; //pointer to pointer to x int z = **y; // same as z=x;

1