All pastes #2077041 Raw Edit

Miscellany

public text v1 · immutable
#2077041 ·published 2011-06-09 01:19 UTC
rendered paste body
int* funcion(){

	int z[n][m];
	int *pointer;

	...

	pointer = &z;
	
return pointer;
}


main{

	int x[n][m];
	&x = funcion();
	printf x[][];

}